1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00

Base: Add su(1) manpage

Base: Add su(1) manpage

Base: Add su(1) manpage
This commit is contained in:
fanzidanzhidi 2022-03-14 10:42:13 +01:00 committed by Andreas Kling
parent ccc3da4ee1
commit 06ebdf82f7

View file

@ -0,0 +1,33 @@
## Name
su - switch to another user
## Synopsis
```sh
$ su <user>
```
## Description
`su`: Switch to another user.
When called with no user-specified, `su` defaults to switch to the *root* user. Need to enter the password if the user switch to has one.
## Arguments
* `user`: User to switch to (defaults to the user with UID 0)
## Examples
Switch to root user
```sh
$ su
```
Switch to another user
```sh
$ su nona
```