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