Skip to content

Instantly share code, notes, and snippets.

@carltondickson
Created May 22, 2015 10:40
Show Gist options
  • Save carltondickson/e5d3194f7383b40bc076 to your computer and use it in GitHub Desktop.
Save carltondickson/e5d3194f7383b40bc076 to your computer and use it in GitHub Desktop.
Search text strings in files
# Search text strings in all files in a folder
grep "test" /var/www/
# Recursively
grep -R "test" /var/www/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment