Added Divers

This commit is contained in:
2025-04-24 16:06:40 +02:00
parent 2abf8e30cf
commit b867b58f01
20 changed files with 1357 additions and 0 deletions

7
Divers/tar.md Normal file
View File

@@ -0,0 +1,7 @@
# tar
##### Compress folder with progress bar...
```bash
sudo tar cf - /mnt/data/cloud -P | pv -s $(sudo du -sb /mnt/data/cloud | awk '{print $1}') | gzip > data.tar.gz
```