Aggiorna README.md

This commit is contained in:
Fabio 2025-03-19 20:48:43 +08:00
parent 81ac30234a
commit 13db744c64

View file

@ -72,3 +72,22 @@ Options:
-r : updates or adds file or directory in already existing .tar file -r : updates or adds file or directory in already existing .tar file
-p : with permissions and ownership -p : with permissions and ownership
``` ```
## RSYNC
rsync [options] source [destination]
se c'è l'accesso con ssh si può sincronizzare su altri server
rsync local_file_path user@remote-host:remote_file_path
rsync user@remote-host:remote_file_path local_file_path
Options:
```
-r : recursive
-a : archive
-z : compresses reduce transfer time
-P : display progress
-v : Displays verbose information
-p : with permissions and ownership
```