Skip to content

Instantly share code, notes, and snippets.

@artbikes
Created March 9, 2012 19:59
Show Gist options
  • Save artbikes/2008347 to your computer and use it in GitHub Desktop.
Save artbikes/2008347 to your computer and use it in GitHub Desktop.
slow awk?
[root@app audit]# time awk '/LOGIN/ {++c} END {print c}' audit.log
2582
real 0m0.069s
user 0m0.067s
sys 0m0.003s
[root@app audit]# time grep "LOGIN" audit.log | wc -l
2582
real 0m0.006s
user 0m0.006s
sys 0m0.003s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment