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