X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/1347d5126a4d89718544d976f64943dfa93dd8c4..ef55c686bcb61d8c83e79eb73ed15639e4345d5c:/rsync.yo diff --git a/rsync.yo b/rsync.yo index 75d9082e..7991f4c3 100644 --- a/rsync.yo +++ b/rsync.yo @@ -223,6 +223,7 @@ verb( -r, --recursive recurse into directories -R, --relative use relative path names -b, --backup make backups (default ~ suffix) + --backup-dir=DIR put backups in the specified directory --suffix=SUFFIX override backup suffix -u, --update update only (don't overwrite newer files) -l, --links preserve soft links @@ -247,6 +248,8 @@ verb( --delete delete files that don't exist on the sending side --delete-excluded also delete excluded files on the receiving side --delete-after delete after transferring, 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 --force force deletion of directories even if not empty --numeric-ids don't map uid/gid values by user/group name @@ -317,12 +320,9 @@ explicitly checked on the receiver and any files of the same name which already exist and have the same checksum and size on the receiver are skipped. This option can be quite slow. -dit(bf(-a, --archive)) This is equivalent to -rlptg. It is a quick way +dit(bf(-a, --archive)) This is equivalent to -rlptgoD. It is a quick way of saying you want recursion and want to preserve everything. -Note: if the user launching rsync is root then the -o (preserve -uid) and -D (preserve devices) options are also implied. - dit(bf(-r, --recursive)) This tells rsync to copy directories recursively. If you don't specify this then rsync won't copy directories at all. @@ -347,6 +347,10 @@ dit(bf(-b, --backup)) With this option preexisting destination files are renamed with a ~ extension as each file is transferred. You can control the backup suffix using the --suffix option. +dit(bf(--backup-dir=DIR)) In combination with the --backup option, this +tells rsync to store all backups in the specified directory. This is +very useful for incremental backups. + dit(bf(--suffix=SUFFIX)) This option allows you to override the default backup suffix used with the -b option. The default is a ~. @@ -427,6 +431,10 @@ contents of only one filesystem. dit(bf(--existing)) This tells rsync not to create any new files - only update files that already exist on the destination. +dit(bf(--max-delete=NUM)) This tells rsync not to delete more than NUM +files or directories. This is useful when mirroring very large trees +to prevent disasters. + dit(bf(--delete)) This tells rsync to delete any files on the receiving side that aren't on the sending side. Files that are excluded from transfer are excluded from being deleted unless you use --delete-excluded. @@ -632,7 +640,8 @@ dit(bf(--password-file)) This option allows you to provide a password in a file for accessing a remote rsync server. Note that this option is only useful when accessing a rsync server using the built in transport, not when using a remote shell as the transport. The file -must not be world readable. +must not be world readable. It should contain just the password as a +single line. enddit() @@ -691,7 +700,7 @@ itemize( The +/- rules are most useful in exclude lists, allowing you to have a single exclude list that contains both include and exclude options. -Here are some examples: +Here are some exclude/include examples: itemize( it() --exclude "*.o" would exclude all filenames matching *.o