helper-scripts/lsgroups.sh
2020-06-07 04:38:56 -07:00

5 lines
94 B
Bash
Executable File

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