一个简单的linux命令 cp
cp命令用来复制文件或者目录,是Linux系统中最常用的命令之一。一般情况下,shell会设置一个别名,在命令行下复制文件时,如果目标文件已经存在,就会询问是否覆盖,不管你是否使用-i参数。但是如果是在shell脚本中执行cp时,没有-i参数时不会询问是否覆盖。这说明命令行和shell脚本的执行方式有些不同。 命令格式 cp [选项]… [-T] 源 目的 命令参数 -a,Carchive 等于-dR Cpreserve=all -b 类似Cbackup 但不接受参数 -d 等于Cno-dereference Cpreserve=links -f,Cforce 如果目标文件无法打开则将其移除并重试(当 -n 选项 -i,Cinteractive 覆盖前询问(使前面的 -n 选项失效) -H 跟随源文件中的命令行符号链接 -l,Clink 链接文件而不复制 -L,Cdereference 总是跟随符号链接 -n,Cno-clobber 不要覆盖已存在的文件(使前面的 -i 选项失效) -P,Cno-dereference 不跟随源文件中的符号链接 -p 等于Cpreserve=模式,所有权,时间戳 -R,-r,Crecursive 复制目录及目录内的所有项目 命令范例 实例一:复制单个文件到目标目录,文件在目标文件中不存在 命令: [root@localhost test]# cp log.log test5 [root@localhost test]# ll -rw-rCrC 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-rCrC 1 root root 0 10-28 14:46 log5-1.log -rw-rCrC 1 root root 0 10-28 14:46 log5-2.log -rw-rCrC 1 root root 0 10-28 14:46 log5-3.log -rw-rCrC 1 root root 0 10-28 14:53 log.log 说明: 实例二:目标文件存在时,会询问是否覆盖 命令: [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-rCrC 1 root root 0 10-28 14:46 log5-1.log -rw-rCrC 1 root root 0 10-28 14:46 log5-2.log -rw-rCrC 1 root root 0 10-28 14:46 log5-3.log -rw-rCrC 1 root root 0 10-28 14:48 log.log 说明: 实例三:复制整个目录 命令:cp -a test3 test5 [root@localhost test]# cp -a test3 test5 [root@localhost test]# ll -rw-rCrC 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-rCrC 1 root root 0 10-28 14:46 log5-1.log -rw-rCrC 1 root root 0 10-28 14:46 log5-2.log -rw-rCrC 1 root root 0 10-28 14:46 log5-3.log -rw-rCrC 1 root root 0 10-28 14:48 log.log drwxrwxrwx 2 root root 4096 10-28 14:47 test3 目标目录不存在是: [root@localhost test]# cp -a test3 test4 [root@localhost test]# ll -rw-rCrC 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]# 说明: 实例四:复制的 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-rCrC 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 说明: 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。 (编辑:ASP站长网) |