Answers for "grep in gz file"

1

grep in gz files

You need to use zgrep instead:
zgrep -a "text" compressed.gz
Posted by: Guest on November-02-2021
1

does grep work on gz files

gz files using the grep command. Unfortunately, grep command is not
working on my compressed files. ... You need to use zgrep command
which invokes grep on compressed or gzipped files. All options specified
are passed directly to the grep command or egrep command
Posted by: Guest on August-05-2021

Browse Popular Code Answers by Language