我正在写一些脚本来检查是否为特定文件设置了“s”权限位。 例如 – 我的文件的权限如下 –
drwxr-s---
如何设置bash脚本或perl脚本?
如果你使用perl,那么看看perldoc :
-u File has setuid bit set. -g File has setgid bit set. -k File has sticky bit set.
所以像这样:
if (-u $filename) { ... }