From d6d57e8f6f8a09681e3985d362a52c527a0f59ed Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 15 Sep 2017 10:59:13 +0100 Subject: [PATCH] sudo: Improve grammar --- pages/common/sudo.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/sudo.md b/pages/common/sudo.md index 639122098f..2a5a5284a8 100644 --- a/pages/common/sudo.md +++ b/pages/common/sudo.md @@ -1,19 +1,19 @@ # sudo -> Execute a command as another user. +> Executes a single command as another user. -- List of an unreadable directory: +- List the contents of an unreadable directory: `sudo {{ls}} {{/usr/local/scrt}}` -- To edit a file as user www: +- Edit a file as the user www: `sudo -u {{www}} {{vi}} {{/var/www/index.html}}` -- To shutdown the machine: +- Shut down the machine: `sudo {{shutdown}} -h +10 {{"Cya soon!"}}` -- To repeat the last command as sudo: +- Repeat the last command as sudo: `sudo {{!!}}`