Skip to content

Instantly share code, notes, and snippets.

@leoluz
Created June 15, 2012 15:34
Show Gist options
  • Save leoluz/2937069 to your computer and use it in GitHub Desktop.
Save leoluz/2937069 to your computer and use it in GitHub Desktop.
How to grep a svn repo ignoring .svn files
find . -not \( -name *.svn -prune \) -type f -exec grep -ril HelloWorld {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment