linux-bench/cfg/2.0.0/6.2.19.sh
2019-09-11 13:09:01 +03:00

10 lines
No EOL
259 B
Bash

#!/bin/bash
cut -f1 -d":" /etc/group | sort -n | uniq -c | while read x ; do
[ -z "$x" ] && break
set - $x
if [ $1 -gt 1 ]; then
gids=$(gawk -F: '($1 == n) { print $3 }' n=$2 /etc/group | xargs)
echo "Duplicate Group Name ($2): $gids"
fi
done