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

20 lines
324 B
Markdown
Raw Normal View History

2014-06-26 18:42:56 +05:30
# sudo
> execute a command as another user
- Listing of an unreadable directory:
2014-06-27 21:31:28 +05:30
`sudo {{ls}} {{/usr/local/scrt}}`
2014-06-26 18:42:56 +05:30
- To edit a file as user www:
2014-06-27 21:31:28 +05:30
`sudo -u {{www}} {{vi}} {{/var/www/index.html}}`
2014-06-26 18:42:56 +05:30
- To shutdown the machine:
2014-06-27 21:31:28 +05:30
`sudo {{shutdown}} -r +10 {{"Cya soon!"}}`
2014-06-26 18:42:56 +05:30
- To repeat the last command as sudo
2014-06-27 21:31:28 +05:30
`sudo {{!!}}`