how to see numbers of user in created ubuntu code example
Example 1: list all users linux
awk -F: '{ print $1}' /etc/passwd
Example 2: list all user ubuntu server
cut -d: -f1 /etc/passwd
awk -F: '{ print $1}' /etc/passwd
cut -d: -f1 /etc/passwd