Answers for "search files in directory shell script"

8

bash search file in directory

grep -rnw '/path/to/somewhere/' -e 'pattern'
Posted by: Guest on January-23-2020
0

bash find file in directory

$ ls -R | grep -i "pattern"
Posted by: Guest on January-29-2021

Code answers related to "search files in directory shell script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language