Horje
compress folder in tar.gz unix Code Example
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




Shell

Related
clear bash history Code Example clear bash history Code Example
linux erase terminal history without trace Code Example linux erase terminal history without trace Code Example
update java runtime ubuntu Code Example update java runtime ubuntu Code Example
give permission to file ubuntu Code Example give permission to file ubuntu Code Example
xrandr add 1366 Code Example xrandr add 1366 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11