aboutsummaryrefslogtreecommitdiff
path: root/init/init.sh
blob: 804d511856bf794b9dba675d0b8cb05842ce240c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Set location of multihome to avoid PATH lookups
MULTIHOME="%s"
if [ -x "$MULTIHOME" ]; then
    # Save HOME
    HOME_OLD="$HOME"
    # Redeclare HOME
    HOME="$($MULTIHOME)"
    # Switch to new HOME
    if [ "$HOME" != "$HOME_OLD" ]; then
        cd "$HOME"
    fi
fi