Skip to content

Instantly share code, notes, and snippets.

@gbarreiro
Last active December 6, 2020 18:23
Show Gist options
  • Save gbarreiro/60343ba52a3314083836a094578ceabe to your computer and use it in GitHub Desktop.
Save gbarreiro/60343ba52a3314083836a094578ceabe to your computer and use it in GitHub Desktop.
Bash cheatsheet: filter output
cat verylongfile.txt | more # shows the content of verylongfile.txt split in pages
cat verylongfile.txt | less # shows the content of verylongfile.txt split in pages, with support for scrolling and backwards navigation
cat verylongfile.txt | grep "I love you" # shows the lines where the string "I love you" is found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment