Explorar el Código

Docs: Add unzip(1) man page

Andres Vieira hace 5 años
padre
commit
cbbfc08f1d
Se han modificado 1 ficheros con 25 adiciones y 0 borrados
  1. 25 0
      Base/usr/share/man/man1/unzip.md

+ 25 - 0
Base/usr/share/man/man1/unzip.md

@@ -0,0 +1,25 @@
+## Name
+
+unzip - extract files from a ZIP archive
+
+## Synopsis
+
+```**sh
+$ unzip file.zip
+```
+
+## Description
+
+unzip will extract files from a zip archive to the current directory. 
+
+The program is compatible with the PKZIP file format specification.
+
+## Examples
+
+```sh
+# Unzip the contents from archive.zip
+$ unzip archive.zip
+Archive: archive.zip
+ extracting: file1.txt
+ extracting: file2.png
+```