1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-02 00:15:25 +02:00
tldr/pages/common/id.md

29 lines
645 B
Markdown
Raw Normal View History

2016-06-21 06:28:25 +08:00
# id
> Display current user and group identity.
2025-01-17 22:38:13 -08:00
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/id-invocation.html>.
2016-06-21 06:28:25 +08:00
- Display current user's ID (UID), group ID (GID) and groups to which they belong:
`id`
2024-07-07 02:55:01 +10:00
- Display the current user identity:
`id {{[-un|--user --name]}}`
2024-07-07 02:55:01 +10:00
2016-06-21 06:28:25 +08:00
- Display the current user identity as a number:
`id {{[-u|--user]}}`
2016-06-21 06:28:25 +08:00
2024-07-07 02:55:01 +10:00
- Display the current primary group identity:
`id {{[-gn|--group --name]}}`
2024-07-07 02:55:01 +10:00
- Display the current primary group identity as a number:
2016-06-21 06:28:25 +08:00
`id {{[-g|--group]}}`
- Display an arbitrary user's ID (UID), group ID (GID) and groups to which they belong:
`id {{username}}`