Skip to content

Instantly share code, notes, and snippets.

@TomckySan
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TomckySan/b8fa92d060768c1313d0 to your computer and use it in GitHub Desktop.
Save TomckySan/b8fa92d060768c1313d0 to your computer and use it in GitHub Desktop.
Grep recursively
# Ex.1
find ./ -type f -print | xargs grep 'foo' *
# Ex.2
grep -r 'foo' .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment