0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/sudo
2020-07-06 17:13:49 +02:00
..
README.md Clean up plugin READMEs and a few plugins 2020-03-11 19:57:46 +01:00
sudo.plugin.zsh sudo: make the behavior more in line with expectations (#9047) 2020-07-06 17:13:49 +02:00

sudo

Easily prefix your current or previous commands with sudo by pressing esc twice

To use it, add sudo to the plugins array in your zshrc file:

plugins=(... sudo)

Usage

Current typed commands

Say you have typed a long command and forgot to add sudo in front:

$ apt-get install build-essential

By pressing the esc key twice, you will have the same command with sudo prefixed without typing:

$ sudo apt-get install build-essential

Previous executed commands

Say you want to delete a system file and denied:

$ rm some-system-file.txt
-su: some-system-file.txt: Permission denied
$

By pressing the esc key twice, you will have the same command with sudo prefixed without typing:

$ rm some-system-file.txt
-su: some-system-file.txt: Permission denied
$ sudo rm some-system-file.txt
Password:
$