Finding Keywords in file

Directory with several thousands of links to *.gz compressed file
used
Code:
zcat * | grep -in keyword
returns
Code:
/usr/bin/zcat: Argument list too long
used some tricks to make arguments smaller, like
Code:
zcat 1* | grep -in keyword
works in some cases, but not all fileset, could probably write a script around it but would have to do so for several other commands.
Is there any quick and dirty way to do so?
 
Back
Top