请教用ssh怎样下载上传文件!

请教用ssh怎样下载上传文件!

我用ssh远程登录了,但是怎样下载上传自己的文件阿,谢谢。
[quote:d296cac83b="psxiong"]我用ssh远程登录了,但是怎样下载上传自己的文件阿,谢谢。[/quote]

用sftp可做到上傳或下載.
用scp试试,它是ssh的一个组件:scp \local\file uname@host:\somewhere
上传:
scp /path/file user@host:/pathorfile

下载:
scp user@host:/path/file localpathorfile

查看目录或文件:
ssh user@host command ls "/path/*.tgz"
如果用惯了ftp,那么用sftp就很容易上手,和FTP的操作完一样,用“?”就能看到常用命令。但服务器端openssh的version必须是3.5以上的才行。