浏览代码

unrar: add page

Joel Huang 9 年之前
父节点
当前提交
45e74285a3
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      pages/common/unrar.md

+ 19 - 0
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}}`