X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/b19fd07c023c3923979ba965e8f485433d7ecf18..8a78bb963de8d5fc38ef1701ad6eb06750664249:/rsync.yo diff --git a/rsync.yo b/rsync.yo index fce0267c..5ad92119 100644 --- a/rsync.yo +++ b/rsync.yo @@ -832,9 +832,7 @@ make a subsequent transfer of the rest of the file much faster. dit(bf(--progress)) This option tells rsync to print information showing the progress of the transfer. This gives a bored user something to watch. - -This option is normally combined with -v. Using this option without -the -v option will produce weird results on your display. +Implies --verbose without incrementing verbosity. dit(bf(-P)) The -P option is equivalent to --partial --progress. I found myself typing that combination quite often so I created an @@ -1012,9 +1010,9 @@ once, instead of sending the same data to every host individually. Example: verb( -$ rsync --write_batch=pfx -a /source/dir/ /adest/dir/ +$ rsync --write-batch=pfx -a /source/dir/ /adest/dir/ $ rcp pfx.rsync_* remote: -$ rsh remote rsync --read_batch=pfx -a /bdest/dir/ +$ rsh remote rsync --read-batch=pfx -a /bdest/dir/ # or alternatively $ rsh remote ./pfx.rsync_argvs /bdest/dir/ )