如何将一个文件的文件权限应用于另一个文件

时间:2018-02-09 03:38:35

标签: linux bash shell unix

我有两个不同的文件,debug.shtest.sh,我想将debug.sh的权限应用于test.sh我该怎么做?

以下是文件详情:

[root@172-16-3-206 tmp]# ls -ltr debug.sh
-rwxr-xr-x 1 root root 61669 Feb  9 03:25 debug.sh

[root@172-16-3-206 tmp]# ls -ltr test.sh
-rw-rw-r-- 1 admin admin 61697 Feb  9 03:27 test.sh

1 个答案:

答案 0 :(得分:1)

chown --reference=debug.sh test.sh

chmod --reference=debug.sh test.sh