X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/41adbcec9fdf7a72bb15ea7a287b5253713c7ed0..6d301fa3de32d35cd88b113aef720676a4fbc573:/rsync.yo diff --git a/rsync.yo b/rsync.yo index 9b78104b..6eb226fb 100644 --- a/rsync.yo +++ b/rsync.yo @@ -1621,6 +1621,11 @@ An example: quote(tt( rsync -av --link-dest=$PWD/prior_dir host:src_dir/ new_dir/)) +If file's aren't linking, double-check their attributes. Also check if some +attributes are getting forced outside of rsync's control, such a mount option +that squishes root to a single user, or mounts a removable drive with generic +ownership (such as OS X's "Ignore ownership on this volume" option). + Beginning in version 2.6.4, multiple bf(--link-dest) directories may be provided, which will cause rsync to search the list in the order specified for an exact match. @@ -1913,10 +1918,24 @@ would output as "\#012". A literal backslash that is in a filename is not escaped unless it is followed by a hash and 3 digits (0-9). dit(bf(-h, --human-readable)) Output numbers in a more human-readable format. -This makes big numbers output using larger units, with a K, M, or G suffix. If -this option was specified once, these units are K (1000), M (1000*1000), and -G (1000*1000*1000); if the option is repeated, the units are powers of 1024 -instead of 1000. +There are 3 possible levels: (1) output numbers with a separator between each +set of 3 digits (either a comma or a period, depending on if the decimal point +is represented by a period or a comma); (2) output numbers in units of 1000 +(with a character suffix for larger units -- see below); (3) output numbers in +units of 1024. + +The default is human-readable level 1. Each bf(-h) option increases the level +by one. You can take the level down to 0 (to output numbers as pure digits) by +specifing the bf(--no-human-readable) (bf(--no-h)) option. + +The unit letters that are appended in levels 2 and 3 are: K (kilo), M (mega), +G (giga), or T (tera). For example, a 1234567-byte file would output as 1.23M +in level-2 (assuming that a period is your local decimal point). + +Backward compatibility note: versions of rsync prior to 3.1.0 do not support +human-readable level 1, and they default to level 0. Thus, specifying one or +two bf(-h) options behaves the same in old and new versions as long as you +didn't specify a bf(--no-h) option prior to one or more bf(-h) options. dit(bf(--partial)) By default, rsync will delete any partially transferred file if the transfer is interrupted. In some circumstances @@ -2382,7 +2401,7 @@ itemization( it() rsync chooses between doing a simple string match and wildcard matching by checking if the pattern contains one of these three wildcard characters: '*', '?', and '[' . - it() a '*' matches any non-empty path component (it stops at slashes). + it() a '*' matches any path component, but it stops at slashes. it() use '**' to match anything, including slashes. it() a '?' matches any character except a slash (/). it() a '[' introduces a character class, such as [a-z] or [[:alpha:]].