# sudo

Run a command as a another user.

## examples

Run command as root:

    sudo cmdname

Become user "kita":

    sudo -u kita

Become root:

    sudo su

## common tasks

Enable root privileges to save after changing a read-only file in vim:

    :w !sudo tee %
