1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-06 08:38:01 +00:00

Add List All Users as a unix til.

This commit is contained in:
jbranchaud
2015-10-25 19:17:36 -05:00
parent feb9a3c4ab
commit 56f8101243
2 changed files with 12 additions and 0 deletions

11
unix/list-all-users.md Normal file
View File

@@ -0,0 +1,11 @@
# 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](http://askubuntu.com/questions/410244/a-command-to-list-all-users-and-how-to-add-delete-modify-users)