Archived
1
0
This repository has been archived on 2023-11-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
linux/Multicore Gzip.md

14 lines
252 B
Markdown

## Install
```
apt install pigz
```
## Compress
```
tar cf - [inputdir] | pigz -[compression level (0 = none, 1 = minimal, 9 = maximum)] -p[cores] > [output.tar.gz]
```
## Extract
```
unpigz < [input.tar.gz] | (cd [extract location] && tar xvf -)
```