summaryrefslogtreecommitdiff
path: root/rsync.yo
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-11-07 04:28:23 +0000
committerWayne Davison <wayned@samba.org>2005-11-07 04:28:23 +0000
commit9e8ea423e269f504ce22271c6293252c75802997 (patch)
tree347bf2d613f3a282254ebf46afb2cf0d0f06c85d /rsync.yo
parent0c983c1fd451ed50cc16b1fdba7f1a1ca3268fba (diff)
downloadrsync-9e8ea423e269f504ce22271c6293252c75802997.tar.gz
Document the new --chmod option.
Diffstat (limited to 'rsync.yo')
-rw-r--r--rsync.yo9
1 files changed, 9 insertions, 0 deletions
diff --git a/rsync.yo b/rsync.yo
index fc30cea1..ad7276e5 100644
--- a/rsync.yo
+++ b/rsync.yo
@@ -321,6 +321,7 @@ to the detailed description below for a complete description. verb(
-D, --devices preserve devices (root only)
-t, --times preserve times
-O, --omit-dir-times omit directories when preserving times
+ --chmod=CHMOD change destination permissions
-S, --sparse handle sparse files efficiently
-n, --dry-run show what would have been transferred
-W, --whole-file copy files whole (without rsync algorithm)
@@ -697,6 +698,14 @@ it is preserving modification times (see bf(--times)). If NFS is sharing
the directories on the receiving side, it is a good idea to use bf(-O).
This option is inferred if you use bf(--backup) without bf(--backup-dir).
+dit(bf(--chmod)) This options tells rsync to apply the listed "chmod" pattern
+to the permission of the files on the destination. In addition to the normal
+parsing rules specified in the chmod manpage, you can specify an item that
+should only apply to a directory by prefixing it with a 'D', or specify an
+item that should only apply to a file by prefixing it with a 'F'. For example:
+
+quote(--chmod=Dg+s,ug+w,Fo-w,+X)
+
dit(bf(-n, --dry-run)) This tells rsync to not do any file transfers,
instead it will just report the actions it would have taken.