Displaying 1 result from an estimated 1 matches for "dodiff".
Did you mean:
nodiff
2005 Feb 27
0
[Bug 2395] New: problems copying from a dir that includes a symlink in the path
...ed 's,..........................................., ,'
}
opts=(
-r
-rl
-rLL # hack for for case-insensitive file systems
-rR
-rRl
-rRLL
)
testGroup() {
for x in ${opts[@]}
test $x $1
}
setupSource
setupCorrectOutput
rm -rf output
mkdir output
testGroup file
testGroup symlink
dodiff() {
find correct-output -type $1 | sed 's,correct-output/,,' | sed "s,$, $1," >> $c
find output -type $1 | sed 's,output/,,' | sed "s,$, $1," >> $a
}
c=/tmp/dyRsyncBug$$-$1-correct
a=/tmp/dyRsyncBug$$-$1
dodiff f
dodiff l
sort $c &...