Estoy tratando de sincronizar todos los archivos PHP a otra computadora a ssh
través de rsync
. Sin embargo, nunca copia ningún archivo. Estoy en Mac OSX Mountain Lion (10.8.4)
Esto es lo que he intentado:
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
o
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]
Tiene alguna idea sobre esto?