mac自带的终端命令就可以使用sftp功能从服务器上传下载文件,在你电脑上没有安装sftp客户端的时候直接使用终端就可以搞定基本的上传下载了。
mac上使用终端进行sftp命令:
基本格式 sftp root@ip
如果需要指定端口 sftp -p root@ip
上传本机文件到服务器的命令 put 本地文件路径 远程路径
下载服务器文件到本地 get 远程文件路径 本地路径
查看你当前目录用pwd命令,这里推荐本机装一个easy new file,然后可以在右键菜单里面直接复制本机文件的具体路径(copy path)。
mac终端sftp命令使用实例:
sftp> put /users/l/desktop/xia1ge.txt /root (上传 xia1ge.txt 到 root目录)
uploading /users/l/desktop/xia1ge.txt to /root/xia1ge.txt
/users/luanc/desktop/xia1ge.txt 100% 0 0.0kb/s 00:00 (上传进度100%)
sftp> rename xia1ge.txt xia1ge.html(重命名xia1ge.txt为xia1ge.html)
sftp> get xia1ge.html /users/l/desktop (下载xia1ge.html到桌面)
fetching /root/xia1ge.html to /users/l/desktop/xia1ge.html
sftp>
以上是最基本的mac终端使用sftp的命令,更多功能可以参考这篇。
# 更多,请关注「macos专题」