🪄 Tar & Gzip
File compression and directory archiving magic
Compress with Gzip
command line
gzip somefile.txt
gzip -d somefile.txt.gz
Archive with Tar
command line
tar -cvf archive.tar /path/to/dir
tar -czvf archive.tar.gz /path/to/dir
tar -xzf archive.tar.gz