ubuntu users code example
Example 1: ubuntu list users
cat /etc/passwd
Example 2: list all user ubuntu server
cut -d: -f1 /etc/passwd
Example 3: ubuntu list of users
awk -F: '{ print $1}' /etc/passwdCopy
cat /etc/passwd
cut -d: -f1 /etc/passwd
awk -F: '{ print $1}' /etc/passwdCopy