Explorar o código

create sudo.md

initial
Michal %!s(int64=5) %!d(string=hai) anos
pai
achega
f1623f42ee
Modificáronse 1 ficheiros con 23 adicións e 0 borrados
  1. 23 0
      pages.pl/common/sudo.md

+ 23 - 0
pages.pl/common/sudo.md

@@ -0,0 +1,23 @@
+# sudo
+
+> Executes a single command as the superuser or another user.
+
+- Run a command as the superuser:
+
+`sudo {{less /var/log/syslog}}`
+
+- Edit a file as the superuser with your default editor:
+
+`sudo -e {{/etc/fstab}}`
+
+- Run a command as another user and/or group:
+
+`sudo -u {{user}} -g {{group}} {{id -a}}`
+
+- Repeat the last command prefixed with "sudo" (only in bash, zsh, etc.):
+
+`sudo !!`
+
+- Launch the default shell with superuser privileges:
+
+`sudo -i`