每日一个linux命令07-cp

1. 命令解析

命令用途

复制文件或目录至目标位置,或复制一组文件或目录至目标位置

命令格式

复制文件或目录至指定位置 cp [OPTION]... [-T] SOURCE DEST
复制一组文件或目录至指定位置: cp [OPTION]... SOURCE... DIRECTORY
复制一组文件或目录至指定位置: cp [OPTION]... -t DIRECTORY SOURCE...

命令参数

-a, --archive same as -dR --preserve=all
--backup[=CONTROL] make a backup of each existing destination file
-b like --backup but does not accept an argument
--copy-contents copy contents of special files when recursive
-d same as --no-dereference --preserve=links
-f, --force if an existing destination file cannot be
opened, remove it and try again (redundant if
the -n option is used)
-i, --interactive prompt before overwrite (overrides a previous -n
option)
-H follow command-line symbolic links in SOURCE
-l, --link link files instead of copying
-L, --dereference always follow symbolic links in SOURCE
-n, --no-clobber do not overwrite an existing file (overrides
a previous -i option)
-P, --no-dereference never follow symbolic links in SOURCE

-p same as --preserve=mode,ownership,timestamps
--preserve[=ATTR_LIST] preserve the specified attributes (default:
mode,ownership,timestamps), if possible
additional attributes: context, links, xattr,
all
-c same as --preserve=context
--no-preserve=ATTR_LIST don't preserve the specified attributes
--parents use full source file name under DIRECTORY
-R, -r, --recursive copy directories recursively
--reflink[=WHEN] control clone/CoW copies. See below.
--remove-destination remove each existing destination file before
attempting to open it (contrast with --force)
--sparse=WHEN control creation of sparse files. See below.
--strip-trailing-slashes remove any trailing slashes from each SOURCE
argument
-s, --symbolic-link make symbolic links instead of copying
-S, --suffix=SUFFIX override the usual backup suffix
-t, --target-directory=DIRECTORY copy all SOURCE arguments into DIRECTORY
-T, --no-target-directory treat DEST as a normal file
-u, --update copy only when the SOURCE file is newer
than the destination file or when the
destination file is missing
-v, --verbose explain what is being done
-x, --one-file-system stay on this file system
-Z, --context=CONTEXT set security context of copy to CONTEXT
--help display this help and exit
--version output version information and exit

2. 示例

2.1 不带参数的复制文件

[root@fanshifeng cpTest]# ls
f1  f2  f2.~1~  f2.~2~  f3  f4
[root@fanshifeng cpTest]# cp f1 f5
[root@fanshifeng cpTest]# ls
f1  f2  f2.~1~  f2.~2~  f3  f4  f5
[root@fanshifeng cpTest]# ll
total 0
-rw-r--r-- 1 root root 0 Apr 11 19:39 f1
-rw-r--r-- 1 root root 0 Apr 11 19:46 f2
-rw-r--r-- 1 root root 0 Apr 11 19:39 f2.~1~
-rw-r--r-- 1 root root 0 Apr 11 19:46 f2.~2~
-rw-r--r-- 1 root root 0 Apr 11 19:40 f3
-rw-r--r-- 1 root root 0 Apr 11 19:39 f4
-rw-r--r-- 1 root root 0 Apr 11 19:53 f5

可以看到,复制的文件的属性(创建时间)发生了变化

2.2 同时复制多个文件

[root@fanshifeng cpTest]# mkdir d1
[root@fanshifeng cpTest]# ls
d1  f1  f2  f2.~1~  f2.~2~  f3  f4  f5
[root@fanshifeng cpTest]# cp f1 f2 f3 f4 f5 d1
[root@fanshifeng cpTest]# tree d1
d1
├── f1
├── f2
├── f3
├── f4
└── f5

0 directories, 5 files

2.3 复制一个目录

[root@fanshifeng cpTest]# ls
d1  f1  f2  f2.~1~  f2.~2~  f3  f4  f5
[root@fanshifeng cpTest]# cp -r d1 d2
[root@fanshifeng cpTest]# ls
d1  d2  f1  f2  f2.~1~  f2.~2~  f3  f4  f5
[root@fanshifeng cpTest]# tree d2
d2
├── f1
├── f2
├── f3
├── f4
└── f5

0 directories, 5 files

2.4 复制目录或文件,且保留其归档信息(mode,ownership,timestamps) -a

[root@fanshifeng cpTest]# ls
d1  d2  d3  f1  f2  f2.~1~  f2.~2~  f3  f4  f5
[root@fanshifeng cpTest]# ll
total 12
drwxr-xr-x 2 root root 4096 Apr 11 19:55 d1
-rw-r--r-- 1 root root    0 Apr 11 19:39 f1
[root@fanshifeng cpTest]# cp -a f1 f6
[root@fanshifeng cpTest]# cp -a d1 d6
[root@fanshifeng cpTest]# ll
total 16
drwxr-xr-x 2 root root 4096 Apr 11 19:55 d1
drwxr-xr-x 2 root root 4096 Apr 11 19:55 d6
-rw-r--r-- 1 root root    0 Apr 11 19:39 f1
-rw-r--r-- 1 root root    0 Apr 11 19:39 f6

2.5 创建文件的硬链接(快捷方式)而不是复制它们 -l

[root@fanshifeng cpTest]# cp -l f1 d7 -v
`f1' -> `d7/f1'
[root@fanshifeng cpTest]# ls -lvi
total 16
1321179 drwxr-xr-x 2 root root 4096 Apr 11 19:55 d1
1321176 drwxr-xr-x 2 root root 4096 Apr 11 19:56 d2
1321191 drwxr-xr-x 2 root root 4096 Apr 11 20:07 d7
1321172 -rw-r--r-- 2 root root    6 Apr 11 20:05 f1
1321197 -rw-r--r-- 1 root root    0 Apr 11 19:39 f6
[root@fanshifeng cpTest]# ls -lvi d7
total 4
1321172 -rw-r--r-- 2 root root 6 Apr 11 20:05 f1

可以看到:原文件的inode为1321172,目标目录的文件的inode也是1321172

2.6 创建文件的软链接 -s

[root@fanshifeng cpTest]# cp f2 -s d7 -v
`f2' -> `d7/f2'
cp: `d7/f2': can make relative symbolic links only in current directory
[root@fanshifeng cpTest]# cd d7
[root@fanshifeng d7]# cp -s -v ../f1 f1.soft
`../f1' -> `f1.soft'

软链接只能在当前目录下创建

2.7 只复制软链接(不复制文件本身) -P

[root@fanshifeng d7]# cp -v -P f1.soft f3.soft
`f1.soft' -> `f3.soft'
[root@fanshifeng d7]# ll
total 8
-rw-r--r-- 2 root root 6 Apr 11 20:05 f1
lrwxrwxrwx 1 root root 5 Apr 11 20:12 f1.soft -> ../f1
-rw-r--r-- 1 root root 6 Apr 11 20:18 f2
lrwxrwxrwx 1 root root 5 Apr 11 20:19 f3.soft -> ../f1

2.8 仅当原文件比较新时拷贝 -u

[root@fanshifeng d7]# cp -u -v f1 f2
[root@fanshifeng d7]# ls
f1  f1.soft  f2  f3.soft
[root@fanshifeng d7]# ll
total 8
-rw-r--r-- 2 root root 6 Apr 11 20:05 f1
lrwxrwxrwx 1 root root 5 Apr 11 20:12 f1.soft -> ../f1
-rw-r--r-- 1 root root 6 Apr 11 20:18 f2
lrwxrwxrwx 1 root root 5 Apr 11 20:19 f3.soft -> ../f1
[root@fanshifeng d7]# touch f1
[root@fanshifeng d7]# ll
total 8
-rw-r--r-- 2 root root 6 Apr 11 20:49 f1
lrwxrwxrwx 1 root root 5 Apr 11 20:12 f1.soft -> ../f1
-rw-r--r-- 1 root root 6 Apr 11 20:18 f2
lrwxrwxrwx 1 root root 5 Apr 11 20:19 f3.soft -> ../f1
[root@fanshifeng d7]# cp -u -v f1 f2;
cp: overwrite `f2'? y
`f1' -> `f2'
[root@fanshifeng d7]# ll
total 8
-rw-r--r-- 2 root root 6 Apr 11 20:49 f1
lrwxrwxrwx 1 root root 5 Apr 11 20:12 f1.soft -> ../f1
-rw-r--r-- 1 root root 6 Apr 11 20:49 f2
lrwxrwxrwx 1 root root 5 Apr 11 20:19 f3.soft -> ../f1

2.9 赋值前删除目标文件(若存在) --remove-destination

[root@fanshifeng d7]# ll
total 8
-rw-r--r-- 2 root root 6 Apr 11 20:49 f1
lrwxrwxrwx 1 root root 5 Apr 11 20:12 f1.soft -> ../f1
-rw-r--r-- 1 root root 6 Apr 11 20:49 f2
lrwxrwxrwx 1 root root 5 Apr 11 20:19 f3.soft -> ../f1
[root@fanshifeng d7]# cp -v -remove-destination f1 f2;
cp: invalid option -- 'e'
Try `cp --help' for more information.
[root@fanshifeng d7]# cp -v --remove-destination f1 f2;
cp: overwrite `f2'? y
removed `f2'
`f1' -> `f2'
[root@fanshifeng d7]# ll
total 8
-rw-r--r-- 2 root root 6 Apr 11 20:49 f1
lrwxrwxrwx 1 root root 5 Apr 11 20:12 f1.soft -> ../f1
-rw-r--r-- 1 root root 6 Apr 11 21:01 f2
lrwxrwxrwx 1 root root 5 Apr 11 20:19 f3.soft -> ../f1

2.10 复制文件仅当目标文件不存在时 -n

[root@fanshifeng d7]# ll
total 8
-rw-r--r-- 2 root root 6 Apr 11 20:49 f1
lrwxrwxrwx 1 root root 5 Apr 11 20:12 f1.soft -> ../f1
-rw-r--r-- 1 root root 6 Apr 11 21:01 f2
lrwxrwxrwx 1 root root 5 Apr 11 20:19 f3.soft -> ../f1
[root@fanshifeng d7]# cp -v -n f1 f2
[root@fanshifeng d7]# ll
total 8
-rw-r--r-- 2 root root 6 Apr 11 20:49 f1
lrwxrwxrwx 1 root root 5 Apr 11 20:12 f1.soft -> ../f1
-rw-r--r-- 1 root root 6 Apr 11 21:01 f2
lrwxrwxrwx 1 root root 5 Apr 11 20:19 f3.soft -> ../f1
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容