Updated: 04 October 2024
Create a gzip file of backup.sql and keep the original file
gzip --keep backup.sql
Decompress an archive
gzip -d backup.sql.gz
Freelance software engineer United Kingdom
Updated: 04 October 2024
Create a gzip file of backup.sql and keep the original file
gzip --keep backup.sql
Decompress an archive
gzip -d backup.sql.gz
Updated: 29 July 2026
Create a compressed tar ball
tar -cpzf foo.tar.gz ~/foo-dir
Extract a tar ball to the current directory
tar -x -f music.tar
Extract a gzipped tar to the current directory
tar -x -z -f music.tar.gz