Created
November 27, 2010 10:44
-
-
Save saghul/717782 to your computer and use it in GitHub Desktop.
Ack vs grep
This file contains 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
; Find all Python files containing 'account' | |
; With grep: | |
saul@saghul-agp:~/work/src/python-sipsimple$ grep -R --include=*.py account * | |
; With ack | |
saul@saghul-agp:~/work/src/python-sipsimple$ ack --python account |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment