aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/sudo.bash
blob: 5bb8906a029276346df741f28e1542faf87432bc (plain) (blame)
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
}