How to list all users in Linux
To list all users in linux:
cat /etc/passwd | cut -d”:” -f1
To find the total number of accounts in linux
cat /etc/passwd | wc -l
Feeding Your Inner Developer
To list all users in linux:
cat /etc/passwd | cut -d”:” -f1
To find the total number of accounts in linux
cat /etc/passwd | wc -l
Recent Comments