63 lines
1.3 KiB
Bash
63 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
if [ -d "/bin" ];then
|
|
|
|
COUNT=$(find -L /bin -type f -perm /022 -exec ls -l {} \; |wc -l)
|
|
|
|
if [ $COUNT -eq 0 ];then
|
|
:
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
if [ -d "/usr/bin" ];then
|
|
|
|
COUNT=$(find -L /usr/bin -type f -perm /022 -exec ls -l {} \; |wc -l)
|
|
|
|
if [ $COUNT -eq 0 ];then
|
|
:
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
if [ -d "/usr/local/bin" ];then
|
|
|
|
COUNT=$(find -L /usr/local/bin -type f -perm /022 -exec ls -l {} \; |wc -l)
|
|
|
|
if [ $COUNT -eq 0 ];then
|
|
:
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
if [ -d "/sbin" ];then
|
|
|
|
COUNT=$(find -L /sbin -type f -perm /022 -exec ls -l {} \; |wc -l)
|
|
|
|
if [ $COUNT -eq 0 ];then
|
|
:
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
if [ -d "/usr/sbin" ];then
|
|
|
|
COUNT=$(find -L /usr/sbin -type f -perm /022 -exec ls -l {} \; |wc -l)
|
|
|
|
if [ $COUNT -eq 0 ];then
|
|
:
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
if [ -d "/usr/local/sbin" ];then
|
|
|
|
COUNT=$(find -L /usr/local/sbin -type f -perm /022 -exec ls -l {} \; |wc -l)
|
|
|
|
if [ $COUNT -eq 0 ];then
|
|
:
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|