使用putty上傳下載文件(pscp)

putty做爲ssh工具開源免費,簡單易用。但是如何使用它來上傳和下載文件呢?答案在於pscp。html

pscp下載地址:http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html服務器

pscp是一個命令行工具,也就是說,別期望雙擊它來運行。你須要一個命令行工具,像window的dos,而後把目錄切換到pscp.exe所在的目錄。ssh

接下來就能夠使用命令來上傳和下載文件了。使用格式以下:工具

Usage: pscp [options] [user@]host:source target
       pscp [options] source [source...] [user@]host:target
       pscp [options] -ls [user@]host:filespec

上傳文件:spa

pscp [options] source [source...] [user@]host:target
pscp D:\source.txt root@192.168.0.3:/tmp/
//把D盤下的source.txt文件上傳到192.168.0.3(個人虛擬機)這個服務器下的/tmp/目錄中。

下載文件:命令行

pscp [options] [user@]host:source target
pscp root@192.168.0.3:/tmp/source.txt D:\
//192.168.0.3(個人虛擬機)這個服務器/tmp/目錄下的source.txt下載到D盤下。

列出遠程服務器:code

pscp -ls root@192.168.0.3:/tmp
//列出/tmp目錄下的文件。

具體的參數說明,見:http://the.earth.li/~sgtatham/putty/0.63/htmldoc/Chapter5.html#pscphtm

相關文章
相關標籤/搜索