欢迎来到Felix的博客

Do the right things! And talk is cheap,show me your code!

linux系列(八):cp命令

1、命令格式:

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

2、命令功能:

  将源文件复制至目标文件,或将多个源文件复制至目标目录。

3、命令参数:

-a:此参数的效果和同时指定"-dpR"参数相同;
-d:当复制符号连接时,把目标文件或目录也建立为符号连接,并指向与源文件或目录连接的原始文件或目录;
-f:强行复制文件或目录,不论目标文件或目录是否已存在;
-i:覆盖既有文件之前先询问用户;
-l:对源文件建立硬连接,而非复制文件;
-p:保留源文件或目录的属性;
-R/r:递归处理,将指定目录下的所有文件与子目录一并处理;
-s:对源文件建立符号连接,而非复制文件;
-u:使用这项参数后只会在源文件的更改时间较目标文件更新时或是名称相互对应的目标文件并不存在时,才复制文件;
-S:在备份文件时,用指定的后缀“SUFFIX”代替文件的默认后缀;
-b:覆盖已存在的文件目标前将目标文件备份;
-v:详细显示命令执行的操作。

4、简单实例:

(1)、复制单个文件到目标目录,文件在目标文件中不存在

命令:

    cp a.txt test1/
输出:

felix@felix-computer:~/test$ tree
.
├── a.txt
└── test1

1 directory, 1 file
felix@felix-computer:~/test$ cp a.txt test1/
felix@felix-computer:~/test$ tree
.
├── a.txt
└── test1
    └── a.txt

1 directory, 2 files

(2)、目标文件存在时,会询问是否覆盖

命令:

  cp -i a.txt test1/
输出:

felix@felix-computer:~/test$ tree
.
├── a.txt
└── test1
    └── a.txt

1 directory, 2 files
felix@felix-computer:~/test$ cp -i a.txt test1/
cp:是否覆盖'test1/a.txt'? y
felix@felix-computer:~/test$ tree
.
├── a.txt
└── test1
    └── a.txt

1 directory, 2 files

(3)、复制整个目录

命令:

  cp -r test1 test2

输出:

当文件夹存在时,赋值到目标文件夹中
felix@felix-computer:~/test$ tree
.
├── test1
│   └── a.txt
└── test2

2 directories, 1 file
felix@felix-computer:~/test$ cp -r test1 test2
felix@felix-computer:~/test$ tree
.
├── test1
│   └── a.txt
└── test2
    └── test1
        └── a.txt

3 directories, 2 files
当文件夹不存在时,新建
felix@felix-computer:~/test$ tree
.
├── test1
│   └── a.txt
└── test2
    └── test1
        └── a.txt

3 directories, 2 files
felix@felix-computer:~/test$ cp -r test1 test3
felix@felix-computer:~/test$ tree
.
├── test1
│   └── a.txt
├── test2
│   └── test1
│       └── a.txt
└── test3
    └── a.txt

4 directories, 3 files

(4)、给文件创建一个快捷方式

命令:

  cp -s test1/test2/test3/a.txt a_link.txt

输出:

felix@felix-computer:~/test$ tree
.
└── test1
    └── test2
        └── test3
            └── a.txt

3 directories, 1 file
felix@felix-computer:~/test$ cp -s test1/test2/test3/a.txt a_link.txt
felix@felix-computer:~/test$ tree
.
├── a_link.txt -> test1/test2/test3/a.txt
└── test1
    └── test2
        └── test3
            └── a.txt

3 directories, 2 files

 

posted @ 2018-11-07 19:12  寂静的天空  阅读(578)  评论(0编辑  收藏  举报
个人感悟: 一个人最好的镜子就是自己,你眼中的你和别人眼中的你,不是一回事。有人夸你,别信;有人骂你,别听。一根稻草,扔街上就是垃圾;捆上白菜就是白菜价;捆上大闸蟹就是大闸蟹的价。 一个人,不狂是没有出息的,但一直狂,肯定是没有出息的。雨打残花风卷流云,剑影刀光闪过后,你满脸冷酷的站在珠峰顶端,傲视苍生无比英武,此时我问你:你怎么下去? 改变自己就是改变自己的心态,该沉的时候沉下去,该浮的时候浮上来;不争名夺利,不投机取巧,不尔虞我诈;少说、多听、多行动。人每所谓穷通寿夭为命所系,岂不知造物之报施,全视人之自取。 座佑铭:每一个不曾起舞的日子,都是对生命的辜负。