Created
March 9, 2012 19:59
-
-
Save artbikes/2008347 to your computer and use it in GitHub Desktop.
slow awk?
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
[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