Answers for "list all the users in linux"

SQL
13

ubuntu list users

cat /etc/passwd
Posted by: Guest on April-06-2020
8

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;
Posted by: Guest on October-22-2020
8

list all users linux

awk -F: '{ print $1}' /etc/passwd
Posted by: Guest on May-04-2020
1

users list linux

cut -d: -f1 /etc/passwd
or
cat /etc/passwd
Posted by: Guest on February-25-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language