Created
June 20, 2017 22:52
-
-
Save epleterte/f131452cc8d562249fb172687cb474fc to your computer and use it in GitHub Desktop.
I sometimes forget to sudo my vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -ue | |
# Christian Bryn <[email protected]> 2016 | |
# License: WTFPL | |
# Easy-to-use wrapper for sudo that helps you remember to launch vim with sudo when needed | |
# Stick this in ~/bin/ | |
# autodetection of editor: | |
#cmd=$( which $EDITOR ) | |
#...does not work as soon as this file is in path, right...if it's called the same as EDITOR, of course ('vim') | |
# default editor path: | |
[[ -z "${cmd:-}" ]] && cmd="/usr/bin/vim" | |
for f in "$@"; | |
do | |
[[ -f "${f}" ]] || continue | |
if [[ ! -w "${f}" ]] | |
then | |
while :; | |
do | |
read -p "'${f}' is not writable - launch with sudo? [y/n]" | |
case $REPLY in | |
y|Y) | |
cmd="sudo ${cmd}" | |
break | |
;; | |
n|N) | |
break | |
;; | |
esac | |
done | |
fi | |
[[ "${REPLY:-}" == "" ]] || break | |
done | |
${cmd} "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment