我正在尝试同步具有不同名称的文件夹的两个内容:
rsync -av ~/foo user@remote.com:/var/www/bar
我想将内容复制foo到bar远程主机上,而不是目录foo本身。我试过类似的东西foo/*,但 rsync 不支持。
foo
bar
foo/*
rsync 总是创建
/var/www/bar/foo
rsync 将 不 带斜杠的目录解释为copy this directory,将 带 斜杠的目录解释为copy the contents of this directory。
copy this directory
copy the contents of this directory
尝试rsync -av ~/foo/ user@remote.com:/var/www/bar/
rsync -av ~/foo/ user@remote.com:/var/www/bar/