Skip to content

Commit a14310f

Browse files
committed
2 parents 9c6914d + 76902ba commit a14310f

File tree

6 files changed

+6
-2
lines changed

6 files changed

+6
-2
lines changed

taritbz2.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tar -jhcf myarchive.tar.bz2 *

taritbz2_max.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BZIP2=-9 tar -jhcf myarchive.tar.bz2 * # With thanks, https://superuser.com/a/305141

taritgz.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tar -zhcf bug.tar.gz *
1+
tar -zhcf myarchive.tar.gz *

taritgz_max.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GZIP=-9 tar -zhcf myarchive.tar.gz * # With thanks, https://superuser.com/a/305141

taritxz.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tar -Jhcf bug.tar.xz *
1+
tar -Jhcf myarchive.tar.xz *

taritxz_max.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
XZ_OPT=-9e tar -Jhcf myarchive.tar.xz * # With thanks, https://unix.stackexchange.com/a/28977

0 commit comments

Comments
 (0)