Windowsのrsync(msys rsync)でフルパス(ドライブレター付き)の指定方法
Windowsのrsync(msys rsync)でドライブレター付きでフルパスを指定すると The source and destination cannot both be remote. と言われてしまう。
rsync.exe -av C:\develop\src\ d:\temp\dest\
The source and destination cannot both be remote.
rsync error: syntax or usage error (code 1) at /usr/src/rsync/rsync-3.0.8/main.c(1148) [Receiver=3.0.8]
パス・ドライブ指定は /ドライブ/パス で指定するようだ。
rsync.exe -av <strong>/c/develop/src/</strong> <strong>/d/temp/dest/
</strong>sending incremental file list
・
・
・
これで動作した。