Skip to content

Instantly share code, notes, and snippets.

@pedrorvidal
Last active August 29, 2015 13:58
Show Gist options
  • Save pedrorvidal/10277409 to your computer and use it in GitHub Desktop.
Save pedrorvidal/10277409 to your computer and use it in GitHub Desktop.
Search string thru files inside folders recursively
find /var/www -type f -print0 | xargs -0 grep -li 'search string'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment