모든 PHP 파일을 다른 컴퓨터에 동기화하려고합니다. ssh
통하다 rsync
. 그러나 파일을 절대 복사하지 않습니다. Mac OSX Mountain Lion (10.8.4)에 있습니다.
다음은 내가 시도한 것입니다.
rsync --rsh=ssh --verbose --remove-source-files --recursive --exclude=* --include='*.php' $HOME/ pi@raspberrypi:~
building file list ... done
sent 36 bytes received 20 bytes 112.00 bytes/sec
total size is 0 speedup is 0.00
또는
rsync --verbose --remove-source-files -e "ssh" $HOME/*.php pi@raspberrypi:~
rsync: link_stat "/Users/simonjackson/*.php" failed: No such file or directory (2)
sent 21 bytes received 20 bytes 82.00 bytes/sec
total size is 0 speedup is 0.00
rsync error: some files could not be transferred (code 23) at /SourceCache/rsync/rsync-42/rsync/main.c(992) [sender=2.6.9]
이것에 대한 어떤 생각?