Added parallel (multi-threaded) processing

This commit is contained in:
Cedric Dufour 2015-09-04 10:06:37 +02:00
parent 2d7fdb5425
commit 705601f0b1
1 changed files with 5 additions and 0 deletions

View File

@ -24,3 +24,8 @@ tar -jtvf /path/to/foo.tgz
# To create a .gz archive and exclude all jpg,gif,... from the tgz
tar czvf /path/to/foo.tgz --exclude=\*.{jpg,gif,png,wmv,flv,tar.gz,zip} /path/to/foo/
# To use parallel (multi-threaded) implementation of compression algorithms:
tar -z ... -> tar -Ipigz ...
tar -j ... -> tar -Ipbzip2 ...
tar -J ... -> tar -Ipixz ...