爲什麼我的rsync這樣做?它基本上只是在otherDir
內製作someDir
文件夾的副本。如果在/path/to/someDir
中進行更改後再次運行該命令,則rsync會將/path/to/someDir
中的所有文件同步到/path/to/otherDir/someDir
。如何將/path/to/someDir
中的所有文件同步到/path/to/otherDir
。爲什麼`rsync <...>/path/to/someDir/path/to/otherDir`給我留下`/ path/to/otherDir/someDir`,而不是從`someDir`同步文件到`otherDir`?
這是命令看起來像我excuting:
rsync --stats --compress --recursive --times --perms --links --delete --exclude ".git" --exclude "wp-content/upload" --exclude "wp-content/uploads" --exclude "wp-content/gallery" /path/to/someDir /path/to/otherDir
很確定你只需要'... otherDir /'上的尾部'/'來區分這些情況。 – 2012-03-17 18:56:53
如果你投票結束這個問題,你最好發表評論,所以我知道爲什麼....我想也許這對於超級用戶更好?如果是這樣,請投票遷移它,而不是關閉。 – trusktr 2012-03-17 18:59:52
@BenJackson我試過了,但結果是一樣的。 – trusktr 2012-03-17 19:07:20