Answers for "bash find file in directory"

10

how to find a file in linux terminal

find /path/to/folder/ -iname *file_name_portion*
Posted by: Guest on April-01-2020
0

bash find file in directory

$ ls -R | grep -i "pattern"
Posted by: Guest on January-29-2021
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 "bash find file in directory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language