Answers for "compress as tar.gz"

2

compress folder in tar.gz unix

#Compress a folder in tar.gz format
tar -zcvf final_archive.tar.gz folder_to_compress/

#Multicore compression using pigz (can be installed with: conda install -c anaconda pigz)
tar cf - ./folder_to_compress/ | pigz -9 -p NPROC > final_archive.tar.gz
Posted by: Guest on March-30-2021
22

unzip tar.gz

tar -xvf file.tar.gz
Posted by: Guest on March-25-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language