2006-12-14 23:44:58 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-03-21 01:46:39 +03:00
|
|
|
if test -n "$USERPROFILE" -a "$HOME" = "/home/$LOGNAME"; then
|
2006-12-14 23:44:58 +03:00
|
|
|
HOME=$(cd "$USERPROFILE" && pwd)
|
|
|
|
fi
|
|
|
|
export HOME
|
|
|
|
|
|
|
|
if test -f "$HOME/.bash_profile"; then
|
|
|
|
. "$HOME/.bash_profile"
|
|
|
|
fi
|