1 2 3 4 5 6 7 8
# Add the -H parameter to sudo(8) calls, always use the target user's $HOME sudo() { if [[ $1 == -v ]] ; then command sudo "$@" else command sudo -H "$@" fi }