Commit 56c7ed99 authored by Wayne Davison's avatar Wayne Davison

Changed some "rsync" commands into proper "$RSYNC" commands.

parent 5dd14f0c
...@@ -116,10 +116,10 @@ fi ...@@ -116,10 +116,10 @@ fi
cd "$fromdir" cd "$fromdir"
rm -rf "$todir" "$chkdir" rm -rf "$todir" "$chkdir"
rsync -aX file1 file2 $RSYNC -aX file1 file2
rsync -aX file1 file2 ../chk/ $RSYNC -aX file1 file2 ../chk/
rsync -aX --del ../chk/ . $RSYNC -aX --del ../chk/ .
rsync -aX file1 ../lnk/ $RSYNC -aX file1 ../lnk/
xls file1 file2 >"$scratchdir/xattrs.txt" xls file1 file2 >"$scratchdir/xattrs.txt"
...@@ -132,7 +132,7 @@ cd "$fromdir" ...@@ -132,7 +132,7 @@ cd "$fromdir"
rm "$todir/file2" rm "$todir/file2"
echo extra >file1 echo extra >file1
rsync -aX . ../chk/ $RSYNC -aX . ../chk/
checkit "$RSYNC -aiiX . ../to" "$chkdir" "$todir" checkit "$RSYNC -aiiX . ../to" "$chkdir" "$todir"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment