for files in /usr/local/apache/domlogs/*; do grep "wget" $files; done;
-OR-
cd /usr/local/apache/domlogs grep wget * grep lynx * grep curl *
Replace wget with other file names/terms you might want to search for.
If that takes too long, try doing it one by one:
grep wget a* grep wget b* grep wget c* grep wget d* grep wget e* grep wget f* grep wget g* grep wget h* grep wget i* grep wget j* grep wget k* grep wget l* grep wget m* grep wget n* grep wget o* grep wget p* grep wget q* grep wget r* grep wget s* grep wget t* grep wget v* grep wget w* grep wget x* grep wget y* grep wget z*
Alternatively, if you get an error like "Argument list too long":
for i in `ls /usr/local/apache/domlogs|grep -v 'bytes_log'`; do echo "checking on $i" && grep wget /usr/local/apache/domlogs/$i && grep lynx /usr/local/apache/domlogs/$i && grep curl /usr/local/apache/domlogs/$i; done > /root/grep-domlogs-results.txt Then simply take a look at this file /root/grep-domlogs-results.txt