From de08f0ef4077e488ab196a8cf0c67539a520ed36 Mon Sep 17 00:00:00 2001 From: Mallick Hossain Date: Thu, 13 Sep 2018 09:36:24 -0400 Subject: [PATCH] Fix tar cowardly failing Since .tar archive was not specified, compression was failing. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3229e44..503c471 100644 --- a/README.md +++ b/README.md @@ -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