max*_*ell 28
您可以使用scp(安全复制).
要从您的机器复制到朋友:
scp file_to_copy user@remote.server.fi:/path/to/location
Run Code Online (Sandbox Code Playgroud)
在另一个方向:
scp user@remote.server.fi:/path/locatio/file_name file_name
Run Code Online (Sandbox Code Playgroud)
如果需要复制整个目录,则需要使用递归标志,如下所示:
scp -r directory_to_copy user@remote.server.fi:/path/to/location
Run Code Online (Sandbox Code Playgroud)