Answers for "linux search all directories for file"

4

linux search all directories for file

find / -iname 'book1*'
Posted by: Guest on December-14-2020
2

find linux with extension

find /home/username/ -name "*.err"
Posted by: Guest on September-19-2020
1

linux find file

# syntax 
# find *</path/to/dir> '(' *<Filter-1> *<and/or-operator> *<filter-2> ')'

# example 
find . '(' -name "Test*.pm" -a ! -name 'Useless*' ')'
Posted by: Guest on May-18-2020

Code answers related to "linux search all directories for file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language