Skip to content

Instantly share code, notes, and snippets.

@dmgig
Created March 22, 2016 17:44
Show Gist options
  • Save dmgig/38fc6d799a522a9c8021 to your computer and use it in GitHub Desktop.
Save dmgig/38fc6d799a522a9c8021 to your computer and use it in GitHub Desktop.
awk show greater than
cat my.log | grep "completion time:" | awk '{ if($8 > 10) print $8 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment