Linux menemukan file yang tidak menemui string

 # Find all files (here php files) which do not contain the string "somestring"
 grep -Li "somestring" *.php
MilMike