Answers for "bash find file"

3

bash find file by name

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

bash find file in directory

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

bash find term in files

grep "some string" . -R
Posted by: Guest on November-08-2020
0

bash find file

# syntax 
# find *</path/to/dir> '(' *<filter-1> -o *<filter-2> ')'

# example 
find . '(' -name '*ERR5312209.zip' -o -name '*ERR5312209.TXT' ')'
Posted by: Guest on May-04-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language