Answers for "find in file linux"

1

find in file linux

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

find file linux

find /home/linuxize -type f -name document.pdfCopy
Posted by: Guest on March-19-2021
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 "Shell/Bash"

Browse Popular Code Answers by Language