helper-scripts/lsgroups.sh
2018-12-15 21:25:42 -08:00

5 lines
94 B
Bash
Executable File

#!/usr/bin/bash
# List all groups in the system
sort <(awk -F ':' '{print $1}' < /etc/group)