1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/sudo.md

24 lines
464 B
Markdown
Raw Normal View History

2014-06-26 18:42:56 +05:30
# sudo
2018-10-22 11:20:30 -06:00
> Executes a single command as the superuser or another user.
2014-06-26 18:42:56 +05:30
2018-10-22 11:20:30 -06:00
- Run a command as the superuser:
2014-06-26 18:42:56 +05:30
2018-10-23 12:18:36 -06:00
`sudo {{less /var/log/syslog}}`
2014-06-26 18:42:56 +05:30
2018-10-22 11:20:30 -06:00
- Edit a file as the superuser with your default editor:
2014-06-26 18:42:56 +05:30
2018-10-22 11:20:30 -06:00
`sudo -e {{/etc/fstab}}`
2014-06-26 18:42:56 +05:30
2018-10-22 11:20:30 -06:00
- Run a command as another user and/or group:
2014-06-26 18:42:56 +05:30
`sudo -u {{user}} -g {{group}} {{id -a}}`
2014-06-26 18:42:56 +05:30
2018-10-22 11:20:30 -06:00
- Repeat the last command prefixed with "sudo" (only in bash, zsh, etc.):
2014-06-26 18:42:56 +05:30
2017-09-20 22:45:15 +01:00
`sudo !!`
2018-10-22 11:20:30 -06:00
- Launch the default shell with superuser privileges:
2017-11-27 18:14:18 +11:00
`sudo -i`