rafaelmaeuer
2/16/2017 - 9:59 AM

Zip and unzip folders on linux using tar - From http://unix.stackexchange.com/questions/93139/can-i-zip-an-entire-folder-using-gzip

# Zip
tar -zcvf archive.tar.gz directory/ 

# Unzip
tar -zxvf archive.tar.gz