En realidad, respondiste tu propia pregunta, ya que tu comando original ya la tiene: --progress
Esta es la opción correcta, aunque la página del manual es un poco críptica al respecto:
--progress show progress during transfer
-P same as --partial --progress
Tiene un poco de sentido, ya que invoca su rsync
cadena con el modo de ejecución en seco, no ocurre ningún transer, pero aún tendría progreso: es decir, los archivos que han cambiado y se transferirán.
De esta manera obtienes una pequeña lista de todos los archivos, por ejemplo:
El destino ya tiene una copia del archivo modificado que se actualizó en el archivo fuente y antiguo, que permanece sin cambios. La fuente también tiene un archivo adicional: 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
Si luego invocamos su comando rsync, pero eliminamos los elementos -i
y simplemente agregamos 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)
Obtiene una lista de solo los archivos que rsync podría transferir: archivo cambiado y archivo nuevo.