Answers for "linux search string in source recursively"

0

linux search string in source recursively

find . -name '*.js' -exec grep -i 'string to search for' {} \; -print
Posted by: Guest on May-06-2021
0

linux search string in source recursively

grep --include=\*.js -rnw '/path/to/somewhere/' -e "pattern"
Posted by: Guest on May-06-2021

Code answers related to "linux search string in source recursively"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language