I have a file file.gz, when I try to unzip this file by using gunzip file.gz, it unzipped the file but only contains extracted and removes the file.gz file.
How can I unzip by keeping both unzipped file and zipped file?
I have a file file.gz, when I try to unzip this file by using gunzip file.gz, it unzipped the file but only contains extracted and removes the file.gz file.
How can I unzip by keeping both unzipped file and zipped file?
Here are several alternatives:
Give gunzip the --keep option (version 1.6 or later)
-k--keep
Keep (don't delete) input files during compression or decompression.
gunzip -k file.gz
Pass the file to gunzip as stdin
gunzip < file.gz > file
Use zcat (or, on older systems, gzcat)
zcat file.gz > file
Without requiring a temporary file:
zcat somefile.gz > somefile