1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 10:15:24 +02:00

zip: added multi-part zip compression (#1980)

This commit is contained in:
Hendrik Elsner 2018-02-09 11:52:28 +01:00 committed by Owen Voke
parent 0fb3744ddd
commit 1f19805177

View file

@ -29,3 +29,7 @@
- Delete files from an existing zip file:
`zip -d {{compressed.zip}} "{{foo/*.tmp}}"`
- Archive a directory and its contents to a multi-part [s]plit zip file (e.g. 3GB parts):
`zip -r -s {{3g}} {{compressed.zip}} {{path/to/dir}}`