list all the users in linux code example
Example 1: show list of users in mysql
//To show all data use following query
select * from mysql.user;
// To show user and host use following query
select User,Host from mysql.user;
Example 2: list users in linux
cat /etc/passwd
Example 3: list all users linux
awk -F: '{ print $1}' /etc/passwd