I have a very large gzipped file and want to seach a text/substring in the file. I am using
zcat file_name | grep "pattern"
and
less file_name | grep "pattern"
But both of these commands are very slow. Is there any other command to search a gzipped file?