diff options
-rw-r--r-- | Base/usr/share/man/man1/zip.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/zip.md b/Base/usr/share/man/man1/zip.md new file mode 100644 index 0000000000..36b064cba4 --- /dev/null +++ b/Base/usr/share/man/man1/zip.md @@ -0,0 +1,25 @@ +## Name + +zip - create ZIP archives + +## Synopsis + +```**sh +$ zip [--recurse-paths] [zip file] [files...] +``` + +## Description + +zip will pack the specified files into a zip archive, compressing them when possible. + +The program is compatible with the PKZIP file format specification. + +## Examples + +```sh +# Zip +$ zip archive.zip file1.txt file2.png +Archive: archive.zip + adding: file1.txt + adding: file2.png +``` |