1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2024-10-16 14:27:34 +00:00
config-fish/functions/svim.fish

9 lines
304 B
Fish

function svim --wraps='sudo -u (stat -c "%U" $1) vim $1' --description 'alias svim sudo -u (stat -c "%U" $1) vim $1'
set -l owner (stat -c "%U" $argv[1])
set_color white
echo -n "File owner: "
set_color --bold brwhite
echo $owner
set_color normal
sudo -u $owner vim $argv
end