helper-scripts/lsgroups.sh

5 lines
94 B
Bash
Raw Permalink Normal View History

2018-12-15 21:25:04 -08:00
#!/usr/bin/bash
# List all groups in the system
sort <(awk -F ':' '{print $1}' < /etc/group)