2014-01-28 15:47:32 +08:00
|
|
|
# zip
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
> Package and compress (archive) files into zip file.
|
2014-01-28 15:47:32 +08:00
|
|
|
|
2016-09-01 16:41:00 +01:00
|
|
|
- Package and compress a directory and its contents, [r]ecursively:
|
|
|
|
|
|
|
|
`zip -r {{compressed.zip}} {{/path/to/dir}}`
|
|
|
|
|
|
|
|
- E[x]clude unwanted files from being added to the compressed archive:
|
|
|
|
|
2017-09-13 12:19:40 -05:00
|
|
|
`zip -r {{compressed.zip}} {{path/to/dir}} -x {{path/to/exclude}}`
|
2016-09-01 16:41:00 +01:00
|
|
|
|
2017-03-01 19:12:25 +09:00
|
|
|
- Archive a directory and its contents with the highest level [9] of compression:
|
|
|
|
|
2017-03-01 22:27:52 +05:30
|
|
|
`zip -r -{{9}} {{compressed.zip}} {{/path/to/dir}}`
|
2017-03-01 19:12:25 +09:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Package and compress multiple directories and files:
|
2014-01-28 15:47:32 +08:00
|
|
|
|
2014-01-28 20:08:30 +08:00
|
|
|
`zip -r {{compressed.zip}} {{/path/to/dir1 /path/to/dir2 /path/to/file}}`
|
2015-12-28 17:51:04 +01:00
|
|
|
|
2017-10-20 13:18:06 +01:00
|
|
|
- Create an encrypted archive (user will be prompted for a password):
|
2017-10-20 12:22:59 +01:00
|
|
|
|
|
|
|
`zip -e -r {{compressed.zip}} {{path/to/dir}}`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Add files to an existing zip file:
|
2015-12-28 17:51:04 +01:00
|
|
|
|
|
|
|
`zip {{compressed.zip}} {{path/to/file}}`
|
|
|
|
|
2016-09-01 21:39:16 +01:00
|
|
|
- Delete files from an existing zip file:
|
2015-12-28 17:51:04 +01:00
|
|
|
|
|
|
|
`zip -d {{compressed.zip}} "{{foo/*.tmp}}"`
|