Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 352 Bytes

list-all-users.md

File metadata and controls

11 lines (8 loc) · 352 Bytes

List All Users

On unix-based systems, all system users are listed with other relevant information in the /etc/passwd file. You can output a quick list of the users by name with the following command:

$ cut -d: -f1 /etc/passwd

source