search for: relative2

Displaying 1 result from an estimated 1 matches for "relative2".

Did you mean: relative
2002 Apr 02
2
rsync 2.3.2 with --copy-unsafe-links work badly
...s/file2 src/safe/links/ ln -s ../../unsafe/unsafefile src/safe/links/ #next rsync copy correctly echo "rsync with relative path"; rsync -a --copy-unsafe-links src/safe/ dest test_copy; rm -rf dest #next rsync copy uncorectly - links are copied as files not as links echo "rsync with relative2 path"; (cd src; rsync -a --copy-unsafe-links safe/ ../dest) test_copy; rm -rf dest #next rsync copy uncorectly - all links are copied echo "rsync with absolute path"; rsync -a --copy-unsafe-links `pwd`/src/safe/ dest test_copy;