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
Freelance software engineer United Kingdom
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