Quote:
Originally posted by stickman
You can also use find with grep to narrow down your search. For example:
find /etc -type f -exec grep DHCP {} \;
|
Of course, this forks a new process for each file which is grep'ped. Be nice to you cpu:
find /etc -type f -print|xargs grep DHCP