Answers for "find all files start with a string linux"

11

linux find from file content

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

linux find files without string

# syntax: 
# find *</path/to/dir> ! -name '*<substring-to-exclude>’

# example: 
find . ! -name '*.csv'
Posted by: Guest on May-18-2020

Code answers related to "find all files start with a string linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language