Я пытаюсь синхронизировать все файлы 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]
Есть мысли по этому поводу?