📅  最后修改于: 2023-12-03 14:51:39.346000             🧑  作者: Mango
本文将会介绍如何使用 SSH 连接到远程服务器并复制文件或文件夹到本地。
ssh username@servername
其中
username
为你的用户名,servername
为远程服务器的地址或 IP。
scp username@servername:/path/to/source_file /path/to/destination_directory
scp -r username@servername:/path/to/source_directory /path/to/destination_directory
其中,
-r
选项是递归地复制整个文件夹及其内容,username@servername:/path/to/source_file
是要复制的文件路径,/path/to/destination_directory
是目标文件夹的路径。
exit
通过本文所介绍的方法,我们可以使用 SSH 连接到远程服务器,并复制文件或文件夹到本地。这在进行开发和管理远程服务器时非常有用。欢迎大家在评论区分享你们的经验和想法。