get all the user in ubuntu code example
Example 1: how to get list of users in ubuntu
cat /etc/passwd
#check list of users in linux ubuntu
Example 2: ubuntu list of users
awk -F: '{ print $1}' /etc/passwdCopy
cat /etc/passwd
#check list of users in linux ubuntu
awk -F: '{ print $1}' /etc/passwdCopy