mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-01-20 23:30:15 +01:00
Fix tar cowardly failing
Since .tar archive was not specified, compression was failing.
This commit is contained in:
parent
a81248e47d
commit
de08f0ef40
|
|
@ -15,7 +15,7 @@ Just change the word `directory` to the name of the directory you wish to compre
|
|||
#### Compression:
|
||||
|
||||
```bash
|
||||
lrzdir=directory; tar cvf $lrzdir; lrzip -Ubvvp `nproc` -S .bzip2-lrz -L 9 $lrzdir.tar; rm -fv $lrzdir.tar; unset lrzdir
|
||||
lrzdir=directory; tar cvf $lrzdir.tar $lrzdir; lrzip -Ubvvp `nproc` -S .bzip2-lrz -L 9 $lrzdir.tar; rm -fv $lrzdir.tar; unset lrzdir
|
||||
```
|
||||
|
||||
`tar`s the directory, then maxes out all of the system's processor cores
|
||||
|
|
|
|||
Loading…
Reference in a new issue