Files
atap/ATAPAuditor/Helpers/ShellScripts/common/5.4.3.3.sh
T
2026-05-11 09:15:08 +02:00

10 lines
140 B
Bash

#!/usr/bin/env bash
for file in /etc/profile.d/*.sh; do
if grep -P '^\s*umask\s+0027' "$file" &>/dev/null; then
exit 0
fi
done
exit 1