美文网首页
scp从服务器下载文件到本地或从本地上传文件到服务器

scp从服务器下载文件到本地或从本地上传文件到服务器

作者: 路漫漫其修远兮Wzt | 来源:发表于2017-12-04 12:35 被阅读513次

    参考网址:http://blog.csdn.net/xingzhedai/article/details/52586341
    1、从服务器下载文件

    scp username@servername:/remote_path/filename ~/local_destination

    2、上传本地文件到服务器
    scp ~/local_path/local_filename username@servername:/remote_path

    3、从服务器下载整个目录
    scp -r username@servername:/remote_path/remote_dir/ ~/local_destination

    scp user@远程地址:~/文件目录 本地目录

    4、上传目录到服务器
    scp -r ~/local_dir username@servername:/remote_path/remote_dir

    相关文章

      网友评论

          本文标题:scp从服务器下载文件到本地或从本地上传文件到服务器

          本文链接:https://www.haomeiwen.com/subject/pnatixtx.html