This commit is contained in:
Roland Thomas
2023-02-08 12:56:21 -05:00
parent 94dafc1368
commit 275d157702
4 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
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