mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-11 08:50:37 +00:00
Base: Add manpage for groups(1)
This commit is contained in:
parent
580b335053
commit
8978325af8
Notes:
sideshowbarker
2024-07-18 18:41:44 +09:00
Author: https://github.com/setepenre Commit: https://github.com/SerenityOS/serenity/commit/8978325af81 Pull-request: https://github.com/SerenityOS/serenity/pull/6734 Reviewed-by: https://github.com/bcoles Reviewed-by: https://github.com/linusg
1 changed files with 31 additions and 0 deletions
31
Base/usr/share/man/man1/groups.md
Normal file
31
Base/usr/share/man/man1/groups.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
## Name
|
||||
|
||||
groups - list group memberships
|
||||
|
||||
## Synopsis
|
||||
|
||||
```**sh
|
||||
$ groups [username...]
|
||||
```
|
||||
|
||||
## Description
|
||||
|
||||
`groups` lists group memberships.
|
||||
|
||||
If no username is provided group memberships are listed for current user.
|
||||
|
||||
## Arguments
|
||||
|
||||
* username: username to list group memberships for
|
||||
|
||||
## Examples
|
||||
|
||||
```sh
|
||||
# List group memberships for current user
|
||||
$ groups
|
||||
# List group memberships for one user
|
||||
$ groups nona
|
||||
# List group memberships for multiple users
|
||||
$ groups nona anon root
|
||||
```
|
||||
|
Loading…
Reference in a new issue