Linux Znajdź pliki, które nie są obdzierające łańcucha

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