Merge pull request #423 from xsb/zip

Add options to zip
waldyrious/alt-syntax
Igor Shubovych 2015-12-29 01:35:05 +02:00
commit 3ef9d44a5c
1 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,14 @@
> Package and compress (archive) files into zip file
- package and compress multiple directories & files
- package and compress multiple directories and files
`zip -r {{compressed.zip}} {{/path/to/dir1 /path/to/dir2 /path/to/file}}`
- add files to an existing zip file
`zip {{compressed.zip}} {{path/to/file}}`
- remove unwanted files from an existing zip file
`zip -d {{compressed.zip}} "{{foo/*.tmp}}"`