mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 09:17:57 +01:00
20 lines
325 B
Markdown
20 lines
325 B
Markdown
# sudo
|
|
|
|
> execute a command as another user
|
|
|
|
- Listing of an unreadable directory:
|
|
|
|
`sudo {{ls}} {{/usr/local/scrt}}`
|
|
|
|
|
|
- To edit a file as user www:
|
|
|
|
`sudo -u {{www}} {{vi}} {{/var/www/index.html}}`
|
|
|
|
- To shutdown the machine:
|
|
|
|
`sudo {{shutdown}} -r +10 {{"Cya soon!"}}`
|
|
|
|
- To repeat the last command as sudo
|
|
|
|
`sudo {{!!}}`
|