Skip to content

Instantly share code, notes, and snippets.

@lloiacono
Created April 30, 2020 21:25
Show Gist options
  • Save lloiacono/e0175f425a349c0a2ed5404a6f4c1bc8 to your computer and use it in GitHub Desktop.
Save lloiacono/e0175f425a349c0a2ed5404a6f4c1bc8 to your computer and use it in GitHub Desktop.
AWK useful
# 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