From a10490b05e422d6cbbc07dc9148d5db4a9b913b6 Mon Sep 17 00:00:00 2001 From: Will Pike <6687499+pike00@users.noreply.github.com> Date: Sun, 7 May 2023 12:43:38 -0400 Subject: [PATCH] Update tar.md to add other compression modes --- tar.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tar.md b/tar.md index 2c1d27a8283..988333e4d04 100644 --- a/tar.md +++ b/tar.md @@ -39,6 +39,8 @@ tar -zu archive.tar.gz -C /target/file | Option | Description | |--------|--------------------------------------------------------------------------| | `z` | compress with gzip | +| `J` | compress with xz | +| `j` | compress with bzip | | `c` | create an archive | | `u` | append files which are newer than the corresponding copy ibn the archive | | `f` | filename of the archive |