Published
- 1 min read
linux show all user
The solution for this is noted below
linux show all user
Solution
awk -F: '{ print $1}' /etc/passwd
#or
cut -d: -f1 /etc/passwd
Try other methods by searching on the site. That is if this doesn’t work