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