cat /etc/passwd
cat /etc/passwd #check list of users in linux ubuntu
cut -d: -f1 /etc/passwd
awk -F: '{ print $1}' /etc/passwdCopy