check-world-writable.sh 94B

12345
  1. #!/bin/bash
  2. if [ "$(find / -xdev -type f -perm -002 | wc -l)" -ne 0 ];then
  3. exit 1
  4. fi