Skip to content

Instantly share code, notes, and snippets.

@uuklanger
Last active August 18, 2021 02:46
Show Gist options
  • Select an option

  • Save uuklanger/eb234cc03e71a9364ece0fb31c62cf47 to your computer and use it in GitHub Desktop.

Select an option

Save uuklanger/eb234cc03e71a9364ece0fb31c62cf47 to your computer and use it in GitHub Desktop.
Helpful Shell Commands

Helpful Command Cheet Sheet

These are commands that I forget regularly and need to look up.

Format JSON output as pretty

cat boring.json | python3 -m json.tool > pretty.json

Remove blank line from a file

cat 20210614.raw |awk 'NF'

Convert DOS to UNIX Text Formatting

tr -d '\r' < a.txt > b.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment