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