To view .gz files without decompressing it

hi,

I have a file called Archiver1.gz

how to view this file without doing gunzip on it i.e. decompressing it

i tried this command but its not working:

gzcat Archiver1.gz | tail -10

Use zcat.

Or gunzip -c.

zcat Archiver1.gz---------> it's telling Archiver1.gz.Z: No such file or directory

thanks gunzip -c is working