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