Display a list of all the users on your system who log in with the Bash shell as a default. code example
Example 1: list users in linux
cat /etc/passwd
Example 2: get users shell
getent passwd $LOGNAME | cut -d: -f7
cat /etc/passwd
getent passwd $LOGNAME | cut -d: -f7