Tagged Questions
0
votes
1answer
60 views
zcat or gunzip: proceed on error
When trying to gunzip or zcat a large number of gzip files, zcat/gunzip will terminate with this error:
gzip: <gzip-file>: unexpected end of file
Is there any way I can get gunzip or zcat to ...
1
vote
2answers
337 views
can gunzip work on file without a suffix?
Is there a way to gunzip a file that isn't ending with a .zip even though I know for a fact the file is indeed a zip?
1
vote
3answers
2k views
How to decompress the *.TGZ file without changing the orginal file? [duplicate]
Possible Duplicate:
How do you gunzip a file and keep the .gz file ?
I decompress the file using following command:
gunzip -f test.TGZ
This gave me test.tar file but I lost the test.TGZ ...
3
votes
3answers
25k views
How do I gunzip a directory?
I have a gzipped directory called "new" which contains other directories and files, that I compressed in the following way
gzip -cvr --no-name /path-to-directory/new > new.gz
I have copied this ...
