1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08: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

View File

@@ -211,6 +211,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
- [Kill Everything Running On A Certain Port](unix/kill-everything-running-on-a-certain-port.md)
- [Killing A Frozen SSH Session](unix/killing-a-frozen-ssh-session.md)
- [List All The Say Voices](unix/list-all-the-say-voices.md)
- [List All Users](unix/list-all-users.md)
- [Only Show The Matches](unix/only-show-the-matches.md)
- [Repeat Yourself](unix/repeat-yourself.md)
- [Saying Yes](unix/saying-yes.md)

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)