mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-01 02:54:10 +00:00
Update cheatsheets
This commit is contained in:
@@ -5,17 +5,21 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# zipsplit
|
||||
|
||||
> Read a zipfile and split it into smaller zipfiles.
|
||||
> Split a Zip archive into smaller Zip archives.
|
||||
> More information: <https://manned.org/zipsplit>.
|
||||
|
||||
- Split zipfile into pieces that are no larger than a particular size [n]:
|
||||
- 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 split zipfile:
|
||||
- [p]ause between the creation of each part:
|
||||
|
||||
`zipsplit -p -n {{size}} {{path/to/archive.zip}}`
|
||||
|
||||
- Output the split zipfiles into the `archive` directory:
|
||||
- Output the smaller Zip archives into a given directory:
|
||||
|
||||
`zipsplit -b {{archive}} -n {{size}} {{path/to/archive.zip}}`
|
||||
`zipsplit -b {{path/to/output_directory}} -n {{size}} {{path/to/archive.zip}}`
|
||||
|
||||
Reference in New Issue
Block a user