find / -type f -exec grep -l “IP” {} \;

why ?

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

Hope this helps
Gert (引用此人2000年的帖子,谢谢)