Linux scp命令

Posted longchengruoxi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux scp命令相关的知识,希望对你有一定的参考价值。

Linux scp命令用于Linux之间复制文件和目录。

scpsecure copy的缩写,scp是Linux系统下基于ssh登陆进行安全的远程文件拷贝命令。

语法

scp [-346BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]
         [-l limit] [-o ssh_option] [-P port] [-S program] source ... target

举例

从本地复制到远程

# 拷贝文件
scp /home/test/test.txt root@192.168.0.2:/home/test/
# 拷贝目录
scp -r /home/test/ root@192.168.0.2:/home/test/

从远程复制到本地

# 拷贝文件
scp root@192.168.0.2:/home/test/ /home/test/test.txt
# 拷贝目录
scp -r root@192.168.0.2:/home/test/ v/home/test/

 

 

以上是关于Linux scp命令的主要内容,如果未能解决你的问题,请参考以下文章

linux之cp/scp命令+scp命令详解

linux之cp/scp命令+scp命令详解

linux之cp/scp命令+scp命令详解

Linux中cp和scp命令的使用方法

linux命令-cp/scp {拷贝}

linux命令中的cp和scp命令的区别?