Created
June 24, 2022 12:10
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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