mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-22 13:42:11 +01:00
Added parallel (multi-threaded) processing
This commit is contained in:
parent
2d7fdb5425
commit
705601f0b1
1 changed files with 5 additions and 0 deletions
|
@ -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 ...
|
||||
|
|
Loading…
Reference in a new issue