Skip to content

Instantly share code, notes, and snippets.

@llagerlof
Created June 24, 2022 12:10
Show Gist options
  • Save llagerlof/bcfb6d58c7d15bba984d14adc3f864f5 to your computer and use it in GitHub Desktop.
Save llagerlof/bcfb6d58c7d15bba984d14adc3f864f5 to your computer and use it in GitHub Desktop.
Search files recursively containing some string, filter by extension and show only the filenames.
grep -inRsHl --include \*.php "str" ./
# -i = insensitive
# -R = recursive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment