From 8257a02c65cb79e5e26a8bebdb312af6a7c2ec4b Mon Sep 17 00:00:00 2001 From: Hayden Schiff Date: Mon, 22 Feb 2016 16:50:45 -0500 Subject: [PATCH] 7zr: add page (based on 7za) --- pages/common/7zr.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/7zr.md diff --git a/pages/common/7zr.md b/pages/common/7zr.md new file mode 100644 index 000000000..1da446714 --- /dev/null +++ b/pages/common/7zr.md @@ -0,0 +1,16 @@ +# 7zr + +> A file archiver with high compression ratio. +> A standalone version of `7z` that only supports .7z files. + +- Compress directory or file: + +`7zr a {{compressed.7z}} {{directory_or_file_to_compress}}` + +- Decompress an existing 7z file with original directory structure: + +`7zr x {{compressed.7z}}` + +- Create multipart 7zip file; `part_size` specifies part size in Bytes, Kilobytes, Megabytes or Gigabytes: + +`7zr -v{{part_size}}{{[b|k|m|g]}} {{compressed.7z}} {{directory_or_file_to_compress}}`