144190b1c9
This reverts commit 9c776c34001939420b09f04453123de6d17c0d6a.
5 lines
94 B
Bash
Executable File
5 lines
94 B
Bash
Executable File
#!/usr/bin/bash
|
|
# List all groups in the system
|
|
|
|
sort <(awk -F ':' '{print $1}' < /etc/group)
|