【每天一个Linux命令】20. Linux中的拷贝命令cp

来源:互联网 发布:孙悟空与哪吒知乎 编辑:程序博客网 时间:2024/06/05 06:57

命令用途

 

cp命令用于复制文件或目录

1. 如同时指定两个以上的文件或目录,且最后的目的地是一个已经存在的目录,则它会把前面指定的所有文件或目录复制到此目录中。

2. 若同时指定多个文件或目录,而最后的目的地并非一个已存在的目录,则会出现错误信息

命令举例



#帮助命令

bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~$ cp --h用法:cp [选项]... [-T] 源文件 目标文件 或:cp [选项]... 源文件... 目录 或:cp [选项]... -t 目录 源文件...将源文件复制至目标文件,或将多个源文件复制至目标目录。长选项必须使用的参数对于短选项时也是必需使用的。-a, --archive 等于-dR --preserve=all--attributes-only 仅复制属性而不复制数据 --backup[=CONTROL 为每个已存在的目标文件创建备份-b 类似--backup 但不接受参数--copy-contents 在递归处理是复制特殊文件内容-d 等于--no-dereference --preserve=links-f, --force 如果目标文件无法打开则将其移除并重试(当 -n 选项存在时则不需再选此项)-i, --interactive 覆盖前询问(使前面的 -n 选项失效)-H 跟随源文件中的命令行符号链接-l, --link hard link files instead of copying-L, --dereference always follow symbolic links in SOURCE-n, --no-clobber 不要覆盖已存在的文件(使前面的 -i 选项失效)-P, --no-dereference 不跟随源文件中的符号链接-p 等于--preserve=模式,所有权,时间戳--preserve[=属性列表 保持指定的属性(默认:模式,所有权,时间戳),如果可能保持附加属性:环境、链接、xattr 等--sno-preserve=属性列表 不保留指定的文件属性--parents 复制前在目标目录创建来源文件路径中的所有目录-R, -r, --recursive 递归复制目录及其子目录内的所有内容--reflink[=WHEN] 控制克隆/CoW 副本。请查看下面的内如。--remove-destination 尝试打开目标文件前先删除已存在的目的地文件 (相对于 --force 选项)--sparse=WHEN 控制创建稀疏文件的方式--strip-trailing-slashes 删除参数中所有源文件/目录末端的斜杠-s, --symbolic-link 只创建符号链接而不复制文件-S, --suffix=后缀 自行指定备份文件的后缀-t, --target-directory=目录 将所有参数指定的源文件/目录复制至目标目录-T, --no-target-directory 将目标目录视作普通文件-u, --update 只在源文件比目标文件新,或目标文件不存在时才进行复制-v, --verbose 显示详细的进行步骤-x, --one-file-system 不跨越文件系统进行操作--help 显示此帮助信息并退出--version 显示版本信息并退出默认情况下,源文件的稀疏性仅仅通过简单的方法判断,对应的目标文件目标文件也被为稀疏。这是因为默认情况下使用了--sparse=auto 参数。如果明确使用--sparse=always 参数则不论源文件是否包含足够长的0 序列也将目标文件创文建为稀疏件。使用--sparse=never 参数禁止创建稀疏文件。当指定了--reflink[=always] 参数时执行轻量化的复制,即只在数据块被修改的情况下才复制。如果复制失败或者同时指定了--reflink=auto,则返回标准复制模式。The backup suffix is '~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.The version control method may be selected via the --backup option or throughthe VERSION_CONTROL environment variable. Here are the values:none, off 不进行备份(即使使用了--backup 选项)numbered, t 备份文件加上数字进行排序existing, nil 若有数字的备份文件已经存在则使用数字,否则使用普通方式备份simple, never 永远使用普通方式备份有一个特别情况:如果同时指定--force 和--backup 选项,而源文件和目标文件是同一个已存在的一般文件的话,cp 会将源文件备份。

#环境准备

bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ mkdir dir1bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ mkdir dir2bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ touch dir1/f1.txtbixiaopeng@bixiaopengtekiMacBook-Pro testshell$ touch dir2/f2.txtbixiaopeng@bixiaopengtekiMacBook-Pro testshell$ cd dir1bixiaopeng@bixiaopengtekiMacBook-Pro dir1$ ls -altotal 0drwxr-xr-x  3 bixiaopeng  staff  102  9 18 16:15 .drwxr-xr-x  4 bixiaopeng  staff  136  9 18 16:14 ..-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:15 f1.txt

#拷贝两个文件

# 拷贝f1.txt为cpf1.txtbixiaopeng@bixiaopengtekiMacBook-Pro dir1$ cp f1.txt cpf1.txtbixiaopeng@bixiaopengtekiMacBook-Pro dir1$ ls -altotal 0drwxr-xr-x  4 bixiaopeng  staff  136  9 18 16:23 .drwxr-xr-x  4 bixiaopeng  staff  136  9 18 16:14 ..-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:23 cpf1.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:15 f1.txt

#采用交互方式拷贝文件

#采用交互方式将文件f1.txt拷贝为cpf12.txt#1. 如果cpf12.txt不存在,则直接复制成功bixiaopeng@bixiaopengtekiMacBook-Pro dir1$ cp -i f1.txt cpf12.txt#2. 如果cpf12.txt已存在,则会出现提示是否覆盖原来的,y就会覆盖bixiaopeng@bixiaopengtekiMacBook-Pro dir1$ cp -i f1.txt cpf12.txtoverwrite cpf12.txt? (y/n [n]) y#3. 如果cpf12.txt已存在,则会出现提示是否覆盖原来的,n就不会覆盖bixiaopeng@bixiaopengtekiMacBook-Pro dir1$ cp -i f1.txt cpf12.txtoverwrite cpf12.txt? (y/n [n]) nnot overwrittenbixiaopeng@bixiaopengtekiMacBook-Pro dir1$ ls -altotal 0drwxr-xr-x  5 bixiaopeng  staff  170  9 18 16:40 .drwxr-xr-x  4 bixiaopeng  staff  136  9 18 16:14 ..-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:23 cpf1.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:40 cpf12.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:15 f1.txt
 

#强制覆盖

#如果cpf12.txt已经存在,也可以使用强制覆盖bixiaopeng@bixiaopengtekiMacBook-Pro dir1$ cp -f f1.txt cpf12.txt

#拷贝目录

#将目录dir1复制成dir11bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ cp -R dir1 dir11bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ ls -al dir11total 0drwxr-xr-x  5 bixiaopeng  staff  170  9 18 16:50 .drwxr-xr-x  5 bixiaopeng  staff  170  9 18 16:50 ..-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:50 cpf1.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:50 cpf12.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:50 f1.txt 

#同时拷贝文件和目录

#新建一个目录dir3 bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ mkdir dir3#将某些文件和目录复制到dir3目录下bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ cp -R dir11/cpf1.txt dir11/cpf12.txt dir1 dir3bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ ls -al dir3total 0drwxr-xr-x  5 bixiaopeng  staff  170  9 18 16:53 .drwxr-xr-x  6 bixiaopeng  staff  204  9 18 16:52 ..-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:53 cpf1.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:53 cpf12.txtdrwxr-xr-x  5 bixiaopeng  staff  170  9 18 16:53 dir1
 

#拷贝的文件保留属性

# -p 或 --preserve    保留源文件或目录的属性,包括所有者、所属组、权限与时间bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ cp -p dir2/f2.txt f2.txt bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ ls -altotal 0drwxr-xr-x  7 bixiaopeng  staff  238  9 18 16:58 .drwxr-xr-x@ 7 bixiaopeng  staff  238  9 18 15:43 ..drwxr-xr-x  5 bixiaopeng  staff  170  9 18 16:40 dir1drwxr-xr-x  5 bixiaopeng  staff  170  9 18 16:50 dir11drwxr-xr-x  3 bixiaopeng  staff  102  9 18 16:15 dir2drwxr-xr-x  5 bixiaopeng  staff  170  9 18 16:53 dir3-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:15 f2.txt # -P 或 --parents     保留源文件或目录的路径,此路径可以是绝对路径或相对路径,且目的目录必须已经存在bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ cp -P dir2/f2.txt f3.txt  # -b备份,MAC上不支持该命令,linux系统上可以用

#目录合并及文件覆盖

#查看目录dir1bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ ls -al dir1total 0drwxr-xr-x  7 bixiaopeng  staff  238  9 18 17:27 .drwxr-xr-x  8 bixiaopeng  staff  272  9 18 17:00 ..-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:23 cpf1.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:48 cpf12.txtdrwxr-xr-x  2 bixiaopeng  staff   68  9 18 17:27 ddddir-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:15 f1.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 17:27 f2.txt#查看目录dir2bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ ls -al dir2total 0drwxr-xr-x  4 bixiaopeng  staff  136  9 18 17:29 .drwxr-xr-x  8 bixiaopeng  staff  272  9 18 17:00 ..-rw-r--r--  1 bixiaopeng  staff    0  9 18 17:28 f1.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 17:28 f2.txt# 合并两个目录 # -f 强制覆盖  -r 拷贝目录和文件  -v 显示过程  -p 保留原有属性bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ cp -frvp dir1/* dir2dir1/cpf1.txt -> dir2/cpf1.txtdir1/cpf12.txt -> dir2/cpf12.txtdir1/ddddir -> dir2/ddddirdir1/f1.txt -> dir2/f1.txtdir1/f2.txt -> dir2/f2.txt#再查看dir2全部都复制过来啦bixiaopeng@bixiaopengtekiMacBook-Pro testshell$ ls -al dir2total 0drwxr-xr-x  7 bixiaopeng  staff  238  9 18 17:31 .drwxr-xr-x  8 bixiaopeng  staff  272  9 18 17:00 ..-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:23 cpf1.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:48 cpf12.txtdrwxr-xr-x  2 bixiaopeng  staff   68  9 18 17:27 ddddir-rw-r--r--  1 bixiaopeng  staff    0  9 18 16:15 f1.txt-rw-r--r--  1 bixiaopeng  staff    0  9 18 17:27 f2.txt


原创粉丝点击