From e7371100f07a8f1cad933a3889346392a9d642b1 Mon Sep 17 00:00:00 2001 From: Joshua Pickard Date: Fri, 26 Aug 2022 14:28:03 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c2ea9e5..8510faa 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,10 @@ This creates `threads.html` and extracts all information into the directory. ```7z a archivename.7z thingtobearchived``` +## Compress and split files (6GB chunks in below example) + +```7z -v6g a ARCHIVE.7z DIRECTORY.OF.FILES``` + ## Recursively unzip ```while [ "`find . -type f -name '*.zip' | wc -l`" -gt 0 ]; do find -type f -name "*.zip" -exec unzip -- '{}' \; -exec rm -- '{}' \;; done```