Answers for "linux find files not cintaining a string"

0

linux find files not cintaining a string

# Find all files (here php files) which do not contain the string "somestring"
 grep -Li "somestring" *.php
Posted by: Guest on June-15-2021

Code answers related to "linux find files not cintaining a string"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language