config-files/.config/fish/functions/sudo.fish

9 lines
242 B
Fish
Raw Permalink Normal View History

2023-02-08 12:56:21 -05:00
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