在Mac OS X中使用ssh从远程服务器检索文件的终端命令是什么?


11

我通常使用shsh进入远程服务器,以便使用Mac OS X的终端管理文件。

我不明白如何将文件从服务器检索(下载)到本地计算机,或将文件从本地计算机发送到服务器(上传)。

Answers:


22

要通过SSH抓取文件:

$ scp host:/path/to/file local_file

发送文件:

$ scp local_file host:/path/to/file

scp 是“安全副本”,它是一种通过SSH连接发送文件的复制实用程序。


还有sftp,有点像ftp,但ssh用作实际的交流手段。
艾萨克(Isaac)2010年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.