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

21 lines
561 B
Markdown
Raw Normal View History

2022-10-10 19:49:41 +05:30
# zipsplit
> Split a Zip archive into smaller Zip archives.
2022-10-10 19:49:41 +05:30
> 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:
2022-10-10 19:49:41 +05:30
`zipsplit -n {{size}} {{path/to/archive.zip}}`
- [p]ause between the creation of each part:
2022-10-10 19:49:41 +05:30
`zipsplit -p -n {{size}} {{path/to/archive.zip}}`
- Output the smaller Zip archives into a given directory:
2022-10-10 19:49:41 +05:30
`zipsplit -b {{path/to/output_directory}} -n {{size}} {{path/to/archive.zip}}`