1 example for gunzip
# Decompress a Gzip file (removing/replacing the original compressed file) gunzip file.gz # Decompress a Gzip file (keep the original compressed file) gunzip -c file.gz > file.out
# Decompress a Gzip file (removing/replacing the original compressed file) gunzip file.gz # Decompress a Gzip file (keep the original compressed file) gunzip -c file.gz > file.out