From d75527f7eecc4e2fcdd18ab157412506717c8adb Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Mon, 7 Nov 2022 23:36:11 -0700 Subject: add blog post --- docs/posts/2019-12-08-Splitting-Zips.html | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'docs/posts/2019-12-08-Splitting-Zips.html') diff --git a/docs/posts/2019-12-08-Splitting-Zips.html b/docs/posts/2019-12-08-Splitting-Zips.html index ed9ecff..8464ca1 100644 --- a/docs/posts/2019-12-08-Splitting-Zips.html +++ b/docs/posts/2019-12-08-Splitting-Zips.html @@ -47,22 +47,28 @@

Creating the archive:

-
zip -r -s 5 oodlesofnoodles.zip website/
-
+
+
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
-
+
+
zip -er -s 5 oodlesofnoodles.zip website
+
+

Extracting Files

First we need to collect all parts, then

-
zip -F oodlesofnoodles.zip --out merged.zip
-
+
+
zip -F oodlesofnoodles.zip --out merged.zip
+
+
-- cgit v1.2.3