print from a compressed .gz to a txt file

This file with the .gz extension, inside that compressed file - Originally what type of file was it?

You could try the following (replace filename.gz, with the name of your file)

Code:
zcat filename.gz > filename.txt
 
Back
Top