Answers for "bash search file names"

8

bash search file in directory

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

bash find file by name

find . -name 'mystring*'
Posted by: Guest on June-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language