1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/zipsplit.md
Vitor Henrique c2b3a2a880
zipsplit: improve page (#12544)
* zipsplit: move to common, add example and refine wording

* zipsplit: improve description

* zipsplit: use "part" instead of "piece"

* zipsplit: use "smaller" instead of split for clarity
2024-03-24 07:41:19 +05:30

20 lines
561 B
Markdown

# zipsplit
> Split a Zip archive into smaller Zip archives.
> More information: <https://manned.org/zipsplit>.
- Split Zip archive into parts that are no larger than 36000 bytes (36 MB):
`zipsplit {{path/to/archive.zip}}`
- Use a given [n]umber of bytes as the part limit:
`zipsplit -n {{size}} {{path/to/archive.zip}}`
- [p]ause between the creation of each part:
`zipsplit -p -n {{size}} {{path/to/archive.zip}}`
- Output the smaller Zip archives into a given directory:
`zipsplit -b {{path/to/output_directory}} -n {{size}} {{path/to/archive.zip}}`