标签: file shell unix ftp transfer
我需要将文件从一台服务器传输到另一台服务器。在源代码中将有连续的传入文件。因此,当我将这些文件传输到目标服务器时,我不需要它们在同一目录中。我怎样才能做到这一点?
答案 0 :(得分:1)
将rsync与--remove-source-files标志一起使用:
rsync
--remove-source-files
rsync -avz --remove-source-files /my/source/file.txt user@remotehost:/my/target/dir