From 97ed8e48a6e77e815bbbdf7581961b7ee5f8f1b8 Mon Sep 17 00:00:00 2001 From: Joshua Pickard Date: Thu, 2 Feb 2023 15:34:11 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 765c22b..26cc844 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,12 @@ This creates `threads.html` and extracts all information into the directory. ## File Management +### Recursively Zip subdirectories into their own .zip files + +```for i in */; do zip -r "${i%/}.zip" "$i"; done``` + +```for i in */; do echo zip -r "${i%/}.zip" "$i"; done``` to see the commands ran + ### Rsync ```rsync -avh --progress /sourcefile /destinationfolder/```