cp的使用注意事项

cp时,当目标文件不存在时,会自动创建一个目标文件,并且该目标文件的拥有者是当前执行拷贝的用户,组是当前执行cp的用户所属的组。

举例说明:
我要拷贝obj.c文件,拥有者以及组均为wqx。
拷贝到的目标文件为A和B。
其中,A是不存在的文件。
B是已存在的文件,拥有者以及组为root。
那么:
[root@localhost test]# chown wqx:wqx obj.c
[root@localhost test]# ls -lrt obj.c
-rw-r–r– 1 wqx wqx 116 Feb 1 01:15 obj.c
[root@localhost test]#
[root@localhost test]# whoami
root
[root@localhost test]# cp obj.c A
[root@localhost test]# ls -lrt A
-rw-r–r– 1 root root 116 Apr 12 18:32 A
[root@localhost test]# touch B
[root@localhost test]# ls -lrt B
-rw-r–r– 1 root root 0 Apr 12 18:32 B
[root@localhost test]# cp obj.c B
cp: overwrite `B’? y
[root@localhost test]# ls -lrt A B
-rw-r–r– 1 root root 116 Apr 12 18:32 A
-rw-r–r– 1 root root 116 Apr 12 18:33 B
[root@localhost test]#

结合上面的例子,你会发现,A的拥有者和组并不是wqx,而变成了root。
而B的权限则没有发生变化。

你可能感兴趣的:(linux,cp命令)