X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/f6aeaa74d11d98f6afcd0290b3790666585f80f9..f3219222143e652688387d2da2f079ea09accd45:/rsync.yo diff --git a/rsync.yo b/rsync.yo index a9aff63b..6710d9d2 100644 --- a/rsync.yo +++ b/rsync.yo @@ -1,5 +1,5 @@ mailto(rsync-bugs@samba.org) -manpage(rsync)(1)(26 Jan 2003)()() +manpage(rsync)(1)(1 Jan 2004)()() manpagename(rsync)(faster, flexible replacement for rcp) manpagesynopsis() @@ -311,7 +311,7 @@ verb( --ignore-existing ignore files that already exist on receiver --delete delete files that don't exist on sender --delete-excluded also delete excluded files on receiver - --delete-after delete after transferring, not before + --delete-after receiver deletes after transfer, not before --ignore-errors delete even if there are IO errors --max-delete=NUM don't delete more than NUM files --partial keep partially transferred files @@ -580,10 +580,10 @@ receiving side that are not on the sending side, this tells rsync to also delete any files on the receiving side that are excluded (see --exclude). Implies --delete. -dit(bf(--delete-after)) By default rsync does file deletions before -transferring files to try to ensure that there is sufficient space on -the receiving filesystem. If you want to delete after transferring -then use the --delete-after switch. Implies --delete. +dit(bf(--delete-after)) By default rsync does file deletions on the +receiving side before transferring files to try to ensure that there is +sufficient space on the receiving filesystem. If you want to delete +after transferring, use the --delete-after switch. Implies --delete. dit(bf(--ignore-errors)) Tells --delete to go ahead and delete files even when there are IO errors. @@ -828,6 +828,29 @@ showing the progress of the transfer. This gives a bored user something to watch. Implies --verbose without incrementing verbosity. +When the file is transferring, the data looks like this: + +verb( + 782448 63% 110.64kB/s 0:00:04 +) + +This tells you the current file size, the percentage of the transfer that +is complete, the current calculated file-completion rate (including both +data over the wire and data being matched locally), and the estimated time +remaining in this transfer. + +After the a file is complete, it the data looks like this: + +verb( + 1238099 100% 146.38kB/s 0:00:08 (5, 57.1% of 396) +) + +This tells you the final file size, that it's 100% complete, the final +transfer rate for the file, the amount of elapsed time it took to transfer +the file, and the addition of a total-transfer summary in parentheses. +These additional numbers tell you how many files have been updated, and +what percent of the total number of files has been scanned. + dit(bf(-P)) The -P option is equivalent to --partial --progress. I found myself typing that combination quite often so I created an option to make it easier.