查找具有SUID or SGID权限的文件
我自己构造的命令是find / -type f -perm u+s,g+s
搜索了一下(https://www.google.co.jp/webh...
好像命令是find directory -user root -perm -4000
find $DIRECTORY -perm /4000
有几点不理解:
其他权限设置成0, 与我的要求有点不符合吧? (其他权限随意)
为什么要加一个/
?
记不住SUID的数字, 用其他方式书写,怎么写?
Linux-Server
系统自带find
man find
So, the exact match is:
-perm mode
, only matches files with mode mode, add/
for or matching,-
for and matching. Other writing methods:-perm -u+s,g+s
-perm /u+s,g+s