• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • vbs
  • DOS/BAT
  • hta/htc
  • python
  • perl
  • VBA
  • ColdFusion
  • ruby
  • PowerShell
  • Lua
  • Golang
  • linux shell
您的位置:首页 > 脚本语言 >linux shell > 一个简单的linux命令 cp

一个简单的linux命令 cp

作者: 字体:[增加 减小] 来源:互联网

通过本文主要向大家介绍了linux cp命令详解,linux cp命令,linux中cp命令,linux下cp命令,linux系统cp命令等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com

cp命令用来复制文件或者目录,是Linux系统中最常用的命令之一。一般情况下,shell会设置一个别名,在命令行下复制文件时,如果目标文件已经存在,就会询问是否覆盖,不管你是否使用-i参数。但是如果是在shell脚本中执行cp时,没有-i参数时不会询问是否覆盖。这说明命令行和shell脚本的执行方式有些不同。

命令格式

cp [选项]… [-T] 源 目的

命令参数

-a, –archive 等于-dR –preserve=all
–backup[=CONTROL 为每个已存在的目标文件创建备份

-b 类似–backup 但不接受参数
–copy-contents 在递归处理是复制特殊文件内容

-d 等于–no-dereference –preserve=links

-f, –force 如果目标文件无法打开则将其移除并重试(当 -n 选项
存在时则不需再选此项)

-i, –interactive 覆盖前询问(使前面的 -n 选项失效)

-H 跟随源文件中的命令行符号链接

-l, –link 链接文件而不复制

-L, –dereference 总是跟随符号链接

-n, –no-clobber 不要覆盖已存在的文件(使前面的 -i 选项失效)

-P, –no-dereference 不跟随源文件中的符号链接

-p 等于–preserve=模式,所有权,时间戳
–preserve[=属性列表 保持指定的属性(默认:模式,所有权,时间戳),如果
可能保持附加属性:环境、链接、xattr 等

-R, -r, –recursive 复制目录及目录内的所有项目

命令范例

实例一:复制单个文件到目标目录,文件在目标文件中不存在

命令:
cp log.log test5
输出:

[root@localhost test]# cp log.log test5 
[root@localhost test]# ll 
-rw-r–r– 1 root root 0 10-28 14:48 log.log 
drwxr-xr-x 6 root root 4096 10-27 01:58 scf 
drwxrwxrwx 2 root root 4096 10-28 14:47 test3 
drwxr-xr-x 2 root root 4096 10-28 14:53 test5 
[root@localhost test]# cd test5 
[root@localhost test5]# ll 
-rw-r–r– 1 root root 0 10-28 14:46 log5-1.log 
-rw-r–r– 1 root root 0 10-28 14:46 log5-2.log 
-rw-r–r– 1 root root 0 10-28 14:46 log5-3.log 
-rw-r–r– 1 root root 0 10-28 14:53 log.log 
</div>

说明:
在没有带-a参数时,两个文件的时间是不一样的。在带了-a参数时,两个文件的时间是一致的。

实例二:目标文件存在时,会询问是否覆盖

命令:
cp log.log test5
输出:

[root@localhost test]# cp log.log test5 
cp:是否覆盖“test5/log.log”? n 
[root@localhost test]# cp -a log.log test5 
cp:是否覆盖“test5/log.log”? y 
[root@localhost test]# cd test5/ 
[root@localhost test5]# ll 
-rw-r–r– 1 root root 0 10-28 14:46 log5-1.log 
-rw-r–r– 1 root root 0 10-28 14:46 log5-2.log 
-rw-r–r– 1 root root 0 10-28 14:46 log5-3.log 
-rw-r–r– 1 root root 0 10-28 14:48 log.log 
</div>

说明:
目标文件存在时,会询问是否覆盖。这是因为cp是cp -i的别名。目标文件存在时,即使加了-f标志,也还会询问是否覆盖。

实例三:复制整个目录

命令:cp -a test3 test5
输出:
目标目录存在时:

[root@localhost test]# cp -a test3 test5 
[root@localhost test]# ll 
-rw-r–r– 1 root root 0 10-28 14:48 log.log 
drwxr-xr-x 6 root root 4096 10-27 01:58 scf 
drwxrwxrwx 2 root root 4096 10-28 14:47 test3 
drwxr-xr-x 3 root root 4096 10-28 15:11 test5 
[root@localhost test]# cd test5/ 
[root@localhost test5]# ll 
-rw-r–r– 1 root root 0 10-28 14:46 log5-1.log 
-rw-r–r– 1 root root 0 10-28 14:46 log5-2.log 
-rw-r–r– 1 root root 0 10-28 14:46 log5-3.log 
-rw-r–r– 1 root root 0 10-28 14:48 log.log 
drwxrwxrwx 2 root root 4096 10-28 14:47 test3 
</div>

目标目录不存在是:

[root@localhost test]# cp -a test3 test4 
[root@localhost test]# ll 
-rw-r–r– 1 root root 0 10-28 14:48 log.log 
drwxr-xr-x 6 root root 4096 10-27 01:58 scf 
drwxrwxrwx 2 root root 4096 10-28 14:47 test3 
drwxrwxrwx 2 root root 4096 10-28 14:47 test4 
drwxr-xr-x 3 root root 4096 10-28 15:11 test5 
[root@localhost test]# 
</div>

说明:
注意目标目录存在与否结果是不一样的。目标目录存在时,整个源目录被复制到目标目录里面。

实例四:复制的 log.log 建立一个连结档 log_link.log

命令:
cp -s log.log log_link.log
输出:

[root@localhost test]# cp -s log.log log_link.log 
[root@localhost test]# ll 
lrwxrwxrwx 1 root root 7 10-28 15:18 log_link.log -> log.log 
-rw-r–r– 1 root root 0 10-28 14:48 log.log 
drwxr-xr-x 6 root root 4096 10-27 01:58 scf 
drwxrwxrwx 2 root root 4096 10-28 14:47 test3 
drwxrwxrwx 2 root root 4096 10-28 14:47 test4 
drwxr-xr-x 3 root root 4096 10-28 15:11 test5 
</div>

说明:
那个 log_link.log 是由 -s 的参数造成的,建立的是一个××『快捷方式』××,所以您会看到在文件的最右边,会显示这个文件是『连结』到哪里去的!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

</div>

您可能想查找下面的文章:

  • Linux 中(加、减、乘、除)实例详解
  • linux命令行批量创建目录详解
  • 详解Linux 中五个重启命令
  • Linux下压缩与解压命令详解
  • 一个简单的linux命令 cp
  • Linux复制文件命令cp之使用解说
  • Linux复制文件命令cp之使用解说
  • 详解Linux中vi命令大全
  • linux链接编译详解
  • linux链接编译详解

相关文章

  • shell脚本编程实现9*9乘法表
  • Shell中删除某些文件外所有文件的3个方法
  • Shell脚本函数定义和函数参数
  • Linux通过命令压缩与解压缩的方法| tar, tar.gz, tar.bz2
  • Shell脚本实现非法IP登陆自动报警
  • linux shell中 if else以及大于、小于、等于逻辑表达式介绍
  • shell脚本编程之循环语句学习笔记
  • mac 安装omyzsh后不执行~/.bash_profile、~/.bashrc的完美解决办法
  • 如何在Linux下修改Mysql的用户(root)密码
  • Python执行Linux系统命令的4种方法

文章分类

  • vbs
  • DOS/BAT
  • hta/htc
  • python
  • perl
  • VBA
  • ColdFusion
  • ruby
  • PowerShell
  • Lua
  • Golang
  • linux shell

最近更新的内容

    • Shell脚本实现启动PHP内置FastCGI Server
    • Shell脚本实现自动检测修改最快的Ubuntu软件源
    • Shell脚本bash: ./t.sh:/bin/bash^M:损坏的解释器: 没有那个文件或目录
    • Linux查找占用的端口,并杀死进程的方法
    • Linux Shell 数组的创建及使用技巧
    • GitBook 制作电子书详细教程
    • linux文本分析awk基础命令介绍(8)
    • shell脚本操作oracle删除表空间、创建表空间、删除用户
    • Linux Shell脚本查看NUMA信息
    • bash脚本输入密码不回显问题的解决方法

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有