Archived
1
0

'Multicore Gzip.md' toevoegen

This commit is contained in:
2020-03-02 03:10:05 +00:00
parent 48f076a147
commit 22bc6ba4ac

13
Multicore Gzip.md Normal file
View File

@@ -0,0 +1,13 @@
## Install
```
apt install pigz
```
## Compress
```
tar cf - <inputdir> | pigz > <output.tar.gz>
```
## Extract
```
unpigz < <input.tar.gz> | (cd <extract location> && tar xvf -)
```