From a6da7a1297e68f77c9b95ef2ac3988ab7bd202a0 Mon Sep 17 00:00:00 2001 From: Russ Edwards Date: Sat, 20 Oct 2018 07:14:46 -0400 Subject: [PATCH] lrzuntar: add page (#2456) --- pages/linux/lrzuntar.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/lrzuntar.md diff --git a/pages/linux/lrzuntar.md b/pages/linux/lrzuntar.md new file mode 100644 index 0000000000..e0d87688f0 --- /dev/null +++ b/pages/linux/lrzuntar.md @@ -0,0 +1,24 @@ +# lrzuntar + +> A wrapper for `lrunzip` to simplify decompression of directories. +> See also: `lrztar`, `lrzip`. + +- Decompress from a file to the current directory: + +`lrzuntar {{path/to/archive.tar.lrz}}` + +- Decompress from a file to the current directory using a specific number of processor threads: + +`lrzuntar -p {{8}} {{path/to/archive.tar.lrz}}` + +- Decompress from a file to the current directory and silently overwrite items that already exist: + +`lrzuntar -f {{archive.tar.lrz}}` + +- Specify the output path: + +`lrzuntar -O {{path/to/directory}} {{archive.tar.lrz}}` + +- Delete the compressed file after decompression: + +`lrzuntar -D {{path/to/archive.tar.lrz}}`