diff options
author | Wayne Davison <wayned@samba.org> | 2014-06-22 09:41:17 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2014-06-22 09:41:17 -0700 |
commit | 61e74afc420b95bea28e8a75632fc1d749b599b8 (patch) | |
tree | 61275f4a39fb7a216ca4c02016e3eb876f52df78 | |
parent | 0466e46b9fc3d32f383dcddc534059bd7eec7395 (diff) | |
download | rsync-61e74afc420b95bea28e8a75632fc1d749b599b8.tar.gz rsync-61e74afc420b95bea28e8a75632fc1d749b599b8.tar.bz2 rsync-61e74afc420b95bea28e8a75632fc1d749b599b8.zip |
Add a clarification about shell wildcard expansion.
-rw-r--r-- | rsync.yo | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -103,7 +103,10 @@ This would transfer all files matching the pattern *.c from the current directory to the directory src on the machine foo. If any of the files already exist on the remote system then the rsync remote-update protocol is used to update the file by sending only the -differences. See the tech report for details. +differences in the data. Note that the expansion of wildcards on the +commandline (*.c) into a list of files is handled by the shell before +it runs rsync and not by rsync itself (exactly the same as all other +posix-style programs). quote(tt(rsync -avz foo:src/bar /data/tmp)) |