|
Or just use grep by itself, like this
grep -ril "172.17.0.0 network" *
this will recursively check from the current directory down, ignoring case, and list the files that "172.17.0.0 network" are in.
-r = recurse down from the current directory
-i = ignore the case of the argument
-l = list the file
|