如何使用rsync仅复制符号链接(而不是它指向的文件)或其他文件?
我试过了
rsync -uvrl input_dir output_dir
但我只需要复制符号链接吗?
任何使用包括排除选项的技巧?
解决方法
根据
this question+answer,您可以将其编写为管道脚本.管道是shell编程和shell脚本的一个组成部分.
find /path/to/files -type l -print | \ rsync -av --files-from=- /path/to/files user@targethost:/path
这里发生了什么?
find命令从/ path / to / files开始,并以递归方式遍历该点下的所有内容.要查找的选项是限制-print选项输出的条件.在这种情况下,只会打印-type l(符号链接,根据man find)的内容来查找“标准输出”.
这些文件成为rsync命令的–file-from选项的“标准输入”.
试一试.我实际上没有测试过这个,但在我看来它应该可行.