Hi,
I use the following command to search for a string in all the files in the directories and sub directories.
find . -type f -print | xargs grep
bermun@cial.net
Can someone please cite a method wherin I can find the entries from a list of 300-500 *.gz files by modifying the above command. May be using zgrep
find / -type f -print0 | xargs -r0 zgrep -Fl
bermun@cial.net ( something like this )
Please help
Thanks