9 lines
242 B
Fish
9 lines
242 B
Fish
function sudo --description "Replacement for Bash 'sudo !!' command to run last command using sudo."
|
|
if test "$argv" = !!
|
|
echo sudo $history[1]
|
|
eval command sudo $history[1]
|
|
else
|
|
command sudo $argv
|
|
end
|
|
end
|