Created
March 22, 2016 17:44
-
-
Save dmgig/38fc6d799a522a9c8021 to your computer and use it in GitHub Desktop.
awk show greater than
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
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