From 1e4ef2c9f0c3eb14a6620d457b7b1f5e8814c46e Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Mon, 2 Mar 2020 21:49:54 +0000 Subject: [PATCH] Added compression level and cores documentation --- Multicore Gzip.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Multicore Gzip.md b/Multicore Gzip.md index 1ed62b9..9ceb72f 100644 --- a/Multicore Gzip.md +++ b/Multicore Gzip.md @@ -4,10 +4,10 @@ apt install pigz ``` ## Compress ``` -tar cf - | pigz > +tar cf - [inputdir] | pigz -[compression level (0 = none, 1 = minimal, 9 = maximum)] -p[cores] > [output.tar.gz] ``` ## Extract ``` -unpigz < | (cd && tar xvf -) +unpigz < [input.tar.gz] | (cd [extract location] && tar xvf -) ```