Displaying 1 result from an estimated 1 matches for "dyrsyncbug".
2005 Feb 27
0
[Bug 2395] New: problems copying from a dir that includes a symlink in the path
...utput
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 > $c-sorted
sort $a > $a-sorted
echo '###' This diff should produce only lines starting with '='
echo '###' diff $1 correct vs actual
/usr/bin/diff --old-line-format='< %l
' --...