From b5fea79ddf136bb6462838b83d7214769727d81d Mon Sep 17 00:00:00 2001 From: Chris Dawkins Date: Sun, 16 Oct 2022 08:46:11 -0600 Subject: [PATCH] ouch: add page (#8968) --- pages/common/ouch.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/ouch.md diff --git a/pages/common/ouch.md b/pages/common/ouch.md new file mode 100644 index 000000000..cfc0d367b --- /dev/null +++ b/pages/common/ouch.md @@ -0,0 +1,20 @@ +# ouch + +> Command-line utility for compressing and decompressing files and directories. +> More information: . + +- Decompress a specific file: + +`ouch decompress {{path/to/archive.tar.xz}}` + +- Decompress a file to a specific location: + +`ouch decompress {{path/to/archive.tar.xz}} --dir {{path/to/directory}}` + +- Decompress multiple files: + +`ouch decompress {{path/to/archive1.tar path/to/archive2.tar.gz ...}}` + +- Compress files: + +`ouch compress {{path/to/file1 path/to/file2 ...}} {{path/to/archive.zip}}`