0

交易是将一些文件从我的计算机传输到位于我大学的服务器,假设服务器位于 my.server.com.mx 并且我的用户名是 user123,我需要哪些命令来传输我的文件?

4

1 回答 1

2
scp file1 file2 file3 user123@my.server.com.mx:

or if installed :

rsync -avP file1 file2 file3 user123@my.server.com.mx:

if no path is specified after the :, the files will reside in the remote HOME : /home/user123

于 2013-08-13T19:59:18.027 回答