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```