5 lines
90 B
Bash
Executable File
5 lines
90 B
Bash
Executable File
#!/bin/bash
|
|
# List all groups in the system
|
|
|
|
sort <(awk -F ':' '{print $1}' < /etc/group)
|