Answers for "list all users with details ubuntu"

22

ubuntu list users

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

list all user ubuntu server

cut -d: -f1 /etc/passwd
Posted by: Guest on May-17-2020
0

ubuntu list of users

awk -F: '{ print $1}' /etc/passwdCopy
Posted by: Guest on April-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language