chmodコマンドの「–reference」が便利
referenceで指定したファイルの権限と同じ内容を、指定したファイルに設定することができます!
以下では、/bin/bashの権限と同じ内容に変更しています。
1 2 3 4 5 6 7 8 9 10 |
# ll /bin/bash -rwxr-xr-x 1 root root 942200 Mar 23 2017 /bin/bash # # ll tota -rw-r--r-- 1 root root 9 Feb 25 23:59 tota # # chmod --reference=/bin/bash tota # ll tota -rwxr-xr-x 1 root root 9 Feb 25 23:59 tota # |