Skip to content

Instantly share code, notes, and snippets.

@Razuuu
Last active October 21, 2024 21:42
Show Gist options
  • Save Razuuu/e96fec3ac12627bb9956dd4dec354475 to your computer and use it in GitHub Desktop.
Save Razuuu/e96fec3ac12627bb9956dd4dec354475 to your computer and use it in GitHub Desktop.
search for a string inside a folder
find . -type f -exec grep -H 'example string' {} \;
#or
grep -Rnw '.' -e 'example string'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment