Ubuntu 服务器上传和下载文件

前端之家收集整理的这篇文章主要介绍了Ubuntu 服务器上传和下载文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用 scp 命令完成文件上传和下载

上传

scp -p port source_dictionary_file user@ServerIp:target_dictionary_file

prot 默认是22,如果使用默认可以不写

scp /User/hellowood/wechat.jpg root@192.168.0.2:/home/hellowood/wechat.jpg
scp -p port -r source_dictionary user@ServerIp:target_dictionary
scp -r /User/hellowood/tomcat root@192.168.0.2:/home/hellowood/tomcat

下载

scp -p user@ServerIp:source_dictionary_file target_dictionary
scp root@192.168.0.2:/home/hellowood/wechat.jpg /User/hellowood/wechat.jpg
scp -p port -r user@ServerIp:source_dictionary target_dictionry
scp -r root@192.168.0.2:/home/hellowood/tomcat /User/hellowood/tomcat
原文链接:https://www.f2er.com/ubuntu/349702.html

猜你在找的Ubuntu相关文章