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.
交易是将一些文件从我的计算机传输到位于我大学的服务器,假设服务器位于 my.server.com.mx 并且我的用户名是 user123,我需要哪些命令来传输我的文件?
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
:
HOME
/home/user123