Created
April 30, 2020 21:25
-
-
Save lloiacono/e0175f425a349c0a2ed5404a6f4c1bc8 to your computer and use it in GitHub Desktop.
AWK useful
This file contains 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
# filter lines by arbitrary value and sorts desc, lines ending with XXXms | |
grep 'T18:4' /var/log/some/some.log | grep 'ms' | awk '{if($NF-0>500){print $NF-0,$0}}' | sort -rg -k 1 | head -10 | |
# grep text between strings | |
grep 'T11' /var/log/some/some.log | grep 'someText' | grep -o -P '(?<=TEXT_A).*(?=TEXT_B)' | sort | uniq -c | sort -r | head -50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment