[译]10个有关SCP的命令

Posted everfight

tags:

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

原文来源: https://www.tecmint.com/scp-commands-examples/

  • 基本语法
scp source_file_name [email protected]_host:destination_folder
  • 查看传输详情 -v
[email protected] ~/Documents $ scp -v Label.pdf [email protected]:.
  • 提供原始文件的修改时间,访问时间和模式
[email protected] ~/Documents $ scp -p Label.pdf [email protected]:.
  • 让文件传输的更快 -C
[email protected] ~/Documents $ scp -Cpv messages.log [email protected]:.
  • 选择另一种加密方式加密文件 -c
    默认使用3des加密,可以使用 -c 指定加密方式
[email protected] ~/Documents $ scp -c 3des Label.pdf [email protected]:.

[email protected]'s password:
Label.pdf 100% 3672KB 282.5KB/s 00:13
  • 限制带宽使用
[email protected] ~/Documents $ scp -l 400 Label.pdf [email protected]:.

[email protected]'s password:
Label.pdf 100% 3672KB 50.3KB/s 01:13
  • 制定SCP使用具体的端口 -P
[email protected] ~/Documents $ scp -P 2249 Label.pdf [email protected]:.

[email protected]'s password:
Label.pdf 100% 3672KB 262.3KB/s 00:14
  • 递归拷贝文件夹下的文件 -r
[email protected] ~/Documents $ scp -r documents [email protected]:.

[email protected]'s password:
Label.pdf 100% 3672KB 282.5KB/s 00:13
scp.txt 100% 10KB 9.8KB/s 00:00
  • 禁用进度表和警告/诊断消息 -q
[email protected] ~/Documents $ scp -q Label.pdf [email protected]:.

[email protected]'s password:
[email protected] ~/Documents $
  • 通过代理使用SCP复制文件(略)

  • 指定自己想要的config文件 -F
[email protected] ~/Documents $ scp -F /home/pungki/proxy_ssh_config Label.pdf

[email protected]:.
[email protected]'s password:
Label.pdf 100% 3672KB 282.5KB/s 00:13

以上是关于[译]10个有关SCP的命令的主要内容,如果未能解决你的问题,请参考以下文章

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

在Windows 10的命令行上编译一个本地C++程序

Linux运维10:scp命令详解

scp命令远程拷贝文件

Linux运维10:scp命令详解

GCC/MingW 在不同版本上编译