rsync, --info
yalnızca mevcut ilerlemeyi değil aynı zamanda aktarım hızını ve geçen süreyi çıktılamak için kullanılabilecek bir seçeneğe sahiptir :
--info=FLAGS fine-grained informational verbosity
Nasıl kullanılacağının açıklaması -P
man sayfasındaki seçenek altında gelir :
-P The -P option is equivalent to --partial --progress. Its purpose is to
make it much easier to specify these two options for a long transfer that
may be interrupted.
There is also a --info=progress2 option that outputs statistics based on
the whole transfer, rather than individual files. Use this flag
without out‐putting a filename (e.g. avoid -v or specify --info=name0)
if you want to see how the transfer is doing without scrolling the screen
with a lot of names. (You don’t need to specify the --progress
option in order to use --info=progress2.)
Yani aşağıdakiler:
rsync -r --info=progress2 --info=name0 "$src" "$dst"
Aşağıdakilerin çıktısı alındığı ve sürekli olarak güncellendiği sonuçları:
18,757,542,664 100% 65.70MB/s 0:04:32 (xfr#1389, to-chk=0/1510)
Aktarım başladığında toplam parça sayısının ve bu nedenle mevcut ilerlemenin, özyineleme için daha fazla dosya keşfedildiğinde özyinelemeli seçenek kullanıldığında değişebileceğini unutmayın.