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
2020-08-31 00:16:28 +02:00

5 lines
221 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])
echo "File owner: $owner"
sudo -u $owner vim $argv
end