Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
但是如何使用 shell 脚本将文件从一台 dv 服务器复制到另一台服务器?这是一个小文件,我想使用最简单的方法,只要它是安全的。
如果您使用 Linux / UNIX / OS X SSH scp 客户端,请尝试此操作
rsync -avz -e ssh user@server1:/var/www/html /var/www/html/
或这个
scp -r user@server1:/var/www/html/ /var/www/html/