dotfiles/fish/.config/fish/functions/sudo.fish
2023-01-25 20:08:57 -08:00

9 lines
126 B
Fish

function sudo
if test "$argv" = !!
eval command sudo $history[1]
else
command sudo $argv
end
end