In realtà, hai risposto alla tua domanda, dato che il tuo comando originale lo ha già: --progress
Questa è l'opzione corretta, sebbene la pagina man sia un po 'enigmatica al riguardo:
--progress show progress during transfer
-P same as --partial --progress
In un certo senso ha senso, dal momento che invochi la tua rsync
stringa con la modalità dryrun, non accade alcun transer, ma avresti comunque dei progressi: vale a dire i file che sono stati modificati e verrebbero trasferiti.
In questo modo ottieni un piccolo elenco di tutti i file, ad esempio:
La destinazione ha già una copia del file modificato che è stato aggiornato nell'origine e nel vecchio file, che rimane invariato. Il sorgente ha anche un file aggiuntivo: newfile.
#~$ ls -lhan /tmp/destination/
total 20K
drwxrwxr-x 2 1000 1000 4,0K Jän 31 09:07 .
drwxrwxrwt 18 0 0 12K Jän 31 09:15 ..
-rw-rw-r-- 1 1000 1000 2 Jän 31 09:08 changedfile
-rw-rw-r-- 1 1000 1000 0 Jän 31 09:07 oldfile
#~$ ls -lhan /tmp/source/
total 20K
drwxrwxr-x 2 1000 1000 4,0K Jän 31 09:07 .
drwxrwxrwt 18 0 0 12K Jän 31 09:15 ..
-rw-rw-r-- 1 1000 1000 2 Jän 31 09:15 changedfile
-rw-rw-r-- 1 1000 1000 0 Jän 31 09:07 newfile
-rw-rw-r-- 1 1000 1000 0 Jän 31 09:07 oldfile
Se poi invochiamo il tuo comando rsync, ma rimuoviamo il dettaglio -i
e aggiungiamo semplicemente dryrun-n
#~$ ~$ rsync -n -rza --progress --stats --ignore-times --checksum /tmp/source/ /tmp/destination/
sending incremental file list
changedfile
newfile
Number of files: 4 (reg: 3, dir: 1)
Number of created files: 1 (reg: 1)
Number of deleted files: 0
Number of regular files transferred: 2
Total file size: 2 bytes
Total transferred file size: 2 bytes
Literal data: 0 bytes
Matched data: 0 bytes
File list size: 0
File list generation time: 0.001 seconds
File list transfer time: 0.000 seconds
Total bytes sent: 187
Total bytes received: 22
sent 187 bytes received 22 bytes 418.00 bytes/sec
total size is 2 speedup is 0.01 (DRY RUN)
Viene visualizzato un elenco dei soli file che rsync tranfser: changefile e newfile.