Last active
January 20, 2022 01:28
-
-
Save emaniacs/3310d73aa75eb39b12190c7a8cf4b3ef to your computer and use it in GitHub Desktop.
untitled #tail #awk #grep
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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