Files
atap/ATAPAuditor/Helpers/ShellScripts/Debian_11/CIS-Debian-6.2.6.sh
T
2026-05-11 09:15:08 +02:00

5 lines
120 B
Bash

#!/bin/bash
cut -d: -f3 /etc/group | sort | uniq -d | while read x; do
echo "Duplicate GID ($x) in /etc/group"
done