helper-scripts/lsusers.sh

5 lines
103 B
Bash
Raw Permalink Normal View History

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