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