您的位置:首页 > 运维架构 > Shell

XShell 4使用sftp上传下载文件命令

2014-06-27 09:44 561 查看
关于如何在Linux与linux,以及linux与windows之前传输文件,如下sftp:/home/test> helpbye   finish your SFTP session
cd    change your remote working directory
clear   clear screen
exit   finish your SFTP session
explore explore your local directory
get    download a file from the server to your local machine
help    give help
lcd    change and/or print local working directory
lls    list contents of a local directory
lpwd  print your local working directory
ls    list contents of a remote directory
mkdir create a directory on the remote server
mv   move or rename a file on the remote server
put    upload a file from your local machine to the server
pwd    print your remote working directory
quit    finish your SFTP session
rename    move or rename a file on the remote server
rm    delete a file
rmdir    remove a directory on the remote serversftp:/home/test>这里主要是介绍windows与linux文件传输,其中比较常用的命令如下:1、get从远程服务器上下载一个文件存放到本地,如下:先通过lcd切换到本地那个目录下,然后通过get file>> lcd d:\ //表示切换到本地的d盘下>> get ./test.sql  //这样就将当前文件下载本地的d盘下2、put是将本地的文件上传到远程服务器上,如下:>> put //在windows下弹出选择文件的窗口3、lcd先通过lcd切换到本地那个目录下>> lcd d:\ //表示切换到本地的d盘下4、lls显示当前目录下的所有文件5、pwd显示当前目录
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息