管理资源吧

当前位置:管理资源吧首页>>>tech>>>c1>>>服务器教程

linux cp 命令

  功能

  复制文件或目录

  语法

  cp [选项] 源文件 目的

  cp [选项] 源目录 目的

  选项

  -b,--backup 覆盖已存在的文件时先备份-f,--force 强行复制文件或目录,不管目标文件或目录是否已经存在-i,--interactive 覆盖已存在的文件之前先询问-p,--preserve 保留源文件或目录的属性-r,-R,--recursive 递归处理目录以及目录下所有的项目-u,--update 当源文件比目的文件较新或目的文件不存在时才复制-v,--verbose 显示命令执行的信息

  示例

  cp a.txt doc复制 a.txt 到 doc 目录

  lychie@ubuntu:/test$ cp a.txt doc

  lychie@ubuntu:/test$ tree doc

  doc

  └── a.txt

  0 directories, 1 file

  cp a.txt doc/b.txt复制 a.txt 到 doc 目录,并重命名为 b.txt

  lychie@ubuntu:/test$ cp a.txt doc/b.txt

  lychie@ubuntu:/test$ tree doc

  doc

  ├── a.txt

  └── b.txt

  0 directories, 2 files

  cp -b a.txt doc复制 a.txt 到 doc 目录,覆盖之前先备份

  lychie@ubuntu:/test$ cp -b a.txt doc

  lychie@ubuntu:/test$ tree doc

  doc

  ├── a.txt

  ├── a.txt~

  └── b.txt

  0 directories, 3 files

  cp -r doc dir复制 doc 目录,并重命名为 dir

  lychie@ubuntu:/test$ ls

  a.txt doc

  lychie@ubuntu:/test$ cp -r doc dir

  lychie@ubuntu:/test$ ls

  a.txt dir doc

  lychie@ubuntu:/test$ tree dir

  dir

  ├── a.txt

  ├── a.txt~

  └── b.txt

  0 directories, 3 files

  cp -p a.txt b.txt复制 a.txt 并重命名为 b.txt 同时保留源文件的属性

  lychie@ubuntu:/test$ ls -l

  总用量 4

  -rw-rw-r-- 1 lychie lychie 13 9月 24 02:00 a.txt

  lychie@ubuntu:/test$ cp -p a.txt b.txt

  lychie@ubuntu:/test$ cp a.txt c.txt

  lychie@ubuntu:/test$ ls -l

  总用量 12

  -rw-rw-r-- 1 lychie lychie 13 9月 24 02:00 a.txt

  -rw-rw-r-- 1 lychie lychie 13 9月 24 02:00 b.txt

  -rw-rw-r-- 1 lychie lychie 13 9月 24 03:24 c.txt

  cp a.txt b.txt category复制 a.txt、b.txt 到目录 category

  lychie@ubuntu:/test$ cp a.txt b.txt category

  lychie@ubuntu:/test$ tree category

[Ok3w_NextPage]

  category

  ├── a.txt

  └── b.txt

  0 directories, 2 files

tech首页 更多tech