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

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

作者: python_spider | 来源:发表于2017-12-09 03:57 被阅读14次

    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

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

    相关文章

      网友评论

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

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