Skip to content

Instantly share code, notes, and snippets.

@emaniacs
Last active January 20, 2022 01:28
Show Gist options
  • Save emaniacs/3310d73aa75eb39b12190c7a8cf4b3ef to your computer and use it in GitHub Desktop.
Save emaniacs/3310d73aa75eb39b12190c7a8cf4b3ef to your computer and use it in GitHub Desktop.
untitled #tail #awk #grep
Using tail
`$ tail -f output.log`
Filter the text in realtime using `grep`
`$ tail -f output.log | grep Error`
Filter the text in realtime using `awk`
`$ tail -f output.log | awk /Error/`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment