Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save facelordgists/708504cc43b755f9768fc346023b2ce1 to your computer and use it in GitHub Desktop.
Save facelordgists/708504cc43b755f9768fc346023b2ce1 to your computer and use it in GitHub Desktop.
How to recursively search folders for a string using grep and ack
grep -r "string" .
# apparently capital R follows symlinks
grep -R "string" .
## Or use ACK
ack "string" folder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment