aboutsummaryrefslogtreecommitdiffstats
path: root/rsync.yo
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-07-19 03:59:35 +0000
committerWayne Davison <wayned@samba.org>2004-07-19 03:59:35 +0000
commit73e015683cbfacbae3acaef75704c7376b74d505 (patch)
tree9ca3d5b17c6db2da8110c19b89e3fff7b376b072 /rsync.yo
parentb462781fd06838f95aa26ca7e868c87809483f05 (diff)
downloadandroid_external_rsync-73e015683cbfacbae3acaef75704c7376b74d505.tar.gz
android_external_rsync-73e015683cbfacbae3acaef75704c7376b74d505.tar.bz2
android_external_rsync-73e015683cbfacbae3acaef75704c7376b74d505.zip
Changed batch.rsync_argvs to batch.sh.
Diffstat (limited to 'rsync.yo')
-rw-r--r--rsync.yo6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsync.yo b/rsync.yo
index 43ca31b3..961891a5 100644
--- a/rsync.yo
+++ b/rsync.yo
@@ -1129,7 +1129,7 @@ using the information stored in the batch file.
For convenience, one additional file is creating when the write-batch
option is used. This file's name is created by appending
-".rsync_argvs" to the batch filename. The .rsync_argvs file contains
+".sh" to the batch filename. The .sh file contains
a command-line suitable for updating a destination tree using that
batch file. It can be executed using a Bourne(-like) shell, optionally
passing in an alternate destination tree pathname which is then used
@@ -1158,12 +1158,12 @@ verb(
verb(
$ rsync --write-batch=batch -a /source/dir/ host:/adest/dir/
$ scp batch* remote:
- $ ssh remote ./batch.rsync_argvs /bdest/dir/
+ $ ssh remote ./batch.sh /bdest/dir/
)
In these examples, rsync is used to update /adest/dir/ with /source/dir/
and the information to repeat this operation is stored in "batch" and
-"batch.rsync_argvs". The host "remote" is then updated with the batched
+"batch.sh". The host "remote" is then updated with the batched
update going into the directory /bdest/dir. The differences between the
three examples is in how the batch gets to the remote machine (via remote
stdin or by being copied first), whether the initial transfer was local or