Skip to content

Instantly share code, notes, and snippets.

@chardcastle
Created July 10, 2013 11:06
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 chardcastle/5965420 to your computer and use it in GitHub Desktop.
Save chardcastle/5965420 to your computer and use it in GitHub Desktop.
Search in files on mac terminal
// Find foo in javascript files within a folder called www
grep 'foo' -rl --include=\*.{js,h} www/
// Find bar in php files within a folder called www
grep 'bar' -rl --include=\*.{php,h} www/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment