From c2b3a2a880d0db05b2fae2052f272bd593809b06 Mon Sep 17 00:00:00 2001 From: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> Date: Sat, 23 Mar 2024 23:11:19 -0300 Subject: [PATCH] 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 --- pages/linux/zipsplit.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pages/linux/zipsplit.md b/pages/linux/zipsplit.md index e2c1fec83..ecc6fe45f 100644 --- a/pages/linux/zipsplit.md +++ b/pages/linux/zipsplit.md @@ -1,16 +1,20 @@ # zipsplit -> Read a zipfile and split it into smaller zipfiles. +> Split a Zip archive into smaller Zip archives. > More information: . -- 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}}`