Files
atap/ATAPAuditor/Helpers/ShellScripts/Ubuntu22.04_Debian12/6.2.3.sh
T
2026-05-11 09:15:08 +02:00

6 lines
124 B
Bash

#!/bin/bash
for i in $(cut -s -d: -f4 /etc/passwd | sort -u); do
grep -q -P "^.*?:[^:]*:$i:" /etc/group || exit 1
done