标签:cp
1.功能:拷贝文件或者目录
2.用法:
cp [OPTION]... [-T] SOURCE DEST 将文件复制到另外一个文件中;
cp [OPTION]... SOURCE... DIRECTORY 将文件复制到目录中
cp [OPTION]... -t DIRECTORY SOURCE..
3.参数:
-a, --archive,相当与同时制定dpR参数
-b --backup[=CONTROL] 复制之前备份
-d 与--no-dereference --preserve=links是一样的
-f, --force 强制复制文件或者目录,不管文件或者目录是否存在
-i, --interactive 覆盖文件之前先询问用户
-p,--preserve 保留源文件或目录的属性,包括所有者、所属组、权限与时间
-P,--parents 保留源文件或目录的路径,此路径可以是绝对路径或相对路径,且目的目录必须已经存在
-R, -r, --recursive 递归复制目录
-s 或 --symbolic-link 对源文件建立符号链接,而非复制文件
-x 或 --one-file-system 复制的文件或目录存放的文件系统,必须与cp指令执行时所处的文件系统相同,否则不复制,亦不处理位于其他分区的文件
4.例子
例1:当前目录下复制文件
[root@mycentos test]# ls -lh
总用量 8.0K
drwxr-xr-x 3 root root 4.0K 5月 13 17:33 test_1
-rwxr-xr-x 1 root root 16 5月 15 16:00 test_1.txt
[root@mycentos test]# cp test_1.txt test_monday.txt
[root@mycentos test]# ls -lh
总用量 12K
drwxr-xr-x 3 root root 4.0K 5月 13 17:33 test_1
-rwxr-xr-x 1 root root 16 5月 15 16:00 test_1.txt
-rwxr-xr-x 1 root root 16 5月 16 13:01 test_monday.txt
例2:将 test_1.txt复制到/home中
[root@mycentos test]# cp test_1.txt /home
[root@mycentos home]# ls -lh test_1.txt
-rwxr-xr-x 1 root root 16 5月 16 13:01 test_1.txt
标签:cp
原文地址:http://myhwj.blog.51cto.com/9763975/1773873