Created
January 20, 2011 11:58
-
-
Save JakubOboza/787793 to your computer and use it in GitHub Desktop.
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
time( ls -d **/* | xargs grep TODO | awk '{print $0 "\n" }' ) | |
(; ls -d **/* | xargs grep TODO | awk '{print $0 "\n" }'; ) 0,01s user 0,01s system 102% cpu 0,019 total | |
time( find -P * | xargs grep TODO | awk '{print $0 "\n" }' ) | |
(; find -P * | xargs grep TODO | awk '{print $0 "\n" }'; ) 0,00s user 0,01s system 88% cpu 0,017 total | |
time ( zargs **/* -- grep TODO | awk '{print $0 "\n" }' ) | |
(; zargs **/* -- grep TODO | awk '{print $0 "\n" }'; ) 0,00s user 0,00s system 20% cpu 0,017 total |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment