helper-scripts/lsgroups.sh
2019-01-20 14:18:17 -08:00

5 lines
94 B
Bash

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