find / -type f -> find all files starting from /
find .... -exec -> for each item found, do the following command. Where you normally place the filename in you command, put {} .
grep -l "IP" something -> returns the filename if string "IP" is found in file something
Bookmarks