想要将文件的模式更改为-rw-------
.
使用chmod 755 ~/.ssh/authorized_keys
得到的结果为:
$ ls -la ~/.ssh/authorized_keys
-rwxr-xr-x. 1 root root 755 Dec 11 03:09 /root/.ssh/authorized_keys
但是想要得到这个结果:
-rw-------. 1 root root 755 Dec 11 03:09 /root/.ssh/authorized_keys
不行。如果使用它可以更改chmod 600
。但是,它显示为755
。