11 lines
196 B
Bash
Executable File
11 lines
196 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -n "$USERPROFILE" -a "$HOME" = "/home/$LOGNAME"; then
|
|
HOME=$(cd "$USERPROFILE" && pwd)
|
|
fi
|
|
export HOME
|
|
|
|
if test -f "$HOME/.bash_profile"; then
|
|
. "$HOME/.bash_profile"
|
|
fi
|