From dde266a520b03a991e49cac94509b58e7b10e7f2 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Mon, 2 Mar 2020 14:06:59 +0530 Subject: Publish deploy 2020-03-02 14:06 --- posts/2019-12-08-Splitting-Zips/index 5.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 posts/2019-12-08-Splitting-Zips/index 5.html (limited to 'posts/2019-12-08-Splitting-Zips/index 5.html') diff --git a/posts/2019-12-08-Splitting-Zips/index 5.html b/posts/2019-12-08-Splitting-Zips/index 5.html new file mode 100644 index 0000000..516cf6b --- /dev/null +++ b/posts/2019-12-08-Splitting-Zips/index 5.html @@ -0,0 +1,10 @@ +Splitting ZIPs into Multiple Parts | Navan Chauhan
0 minute readCreated on December 8, 2019Last modified on January 18, 2020

Splitting ZIPs into Multiple Parts

Tested on macOS

Creating the archive:

zip -r -s 5 oodlesofnoodles.zip website/ +
+ +

5 stands for each split files' size (in mb, kb and gb can also be specified)

For encrypting the zip:

zip -er -s 5 oodlesofnoodles.zip website +
+ +

Extracting Files

First we need to collect all parts, then

zip -F oodlesofnoodles.zip --out merged.zip +
+ +
Tagged with:
\ No newline at end of file -- cgit v1.2.3