1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 19:02:09 +02:00
tldr/pages/linux/runuser.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

24 lines
644 B
Markdown

# runuser
> Run commands as a user and group without asking for password (needs root privileges).
> More information: <https://manned.org/runuser>.
- Run command as a different user:
`runuser {{user}} -c '{{command}}'`
- Run command as a different user and group:
`runuser {{user}} -g {{group}} -c '{{command}}'`
- Start a login shell as a specific user:
`runuser {{user}} -l`
- Specify a shell for running instead of the default shell (also works for login):
`runuser {{user}} -s {{/bin/sh}}`
- Preserve the entire environment of root (only if `--login` is not specified):
`runuser {{user}} --preserve-environment -c '{{command}}'`