From 45e74285a3d82bd114af4659dc8782501b613c7b Mon Sep 17 00:00:00 2001 From: Joel Huang Date: Tue, 5 Jan 2016 09:06:05 +0800 Subject: [PATCH] unrar: add page --- pages/common/unrar.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/common/unrar.md diff --git a/pages/common/unrar.md b/pages/common/unrar.md new file mode 100644 index 000000000..1dfdb09bf --- /dev/null +++ b/pages/common/unrar.md @@ -0,0 +1,19 @@ +# unrar + +> Extract RAR archives + +- extract files into current directory, losing directory structure in the archive + +`unrar e {{compressed.rar}}` + +- extract files with original directory structure + +`unrar x {{compressed.rar}}` + +- test integrity of each file inside the archive file + +`unrar t {{compressed.rar}}` + +- list files inside the archive file without decompressing it + +`unrar l {{compressed.rar}}`