tldr/pages/common/sudo.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

37 lines
975 B
Markdown

# sudo
> Executes a single command as the superuser or another user.
> More information: <https://www.sudo.ws/sudo.html>.
- Run a command as the superuser:
`sudo {{less /var/log/syslog}}`
- Edit a file as the superuser with your default editor:
`sudo --edit {{/etc/fstab}}`
- Run a command as another user and/or group:
`sudo --user={{user}} --group={{group}} {{id -a}}`
- Repeat the last command prefixed with `sudo` (only in `bash`, `zsh`, etc.):
`sudo !!`
- Launch the default shell with superuser privileges and run login-specific files (`.profile`, `.bash_profile`, etc.):
`sudo --login`
- Launch the default shell with superuser privileges without changing the environment:
`sudo --shell`
- Launch the default shell as the specified user, loading the user's environment and reading login-specific files (`.profile`, `.bash_profile`, etc.):
`sudo --login --user={{user}}`
- List the allowed (and forbidden) commands for the invoking user:
`sudo --list`