see user list 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: get users shell
getent passwd $LOGNAME | cut -d: -f7
cat /etc/passwd
#check list of users in linux ubuntu
getent passwd $LOGNAME | cut -d: -f7