2001-10-04 09:57:02 +00:00
|
|
|
# Set up your home directory (in Cygwin syntax)
|
|
|
|
export HOME="//x/YourHomeDirectory"
|
|
|
|
|
|
|
|
# Set up your Language (if you do not want English)
|
|
|
|
# export LANG=DE
|
|
|
|
|
|
|
|
# ========================================================
|
|
|
|
# Below this line you should not change anything if you're
|
|
|
|
# not familiar with configuration of an unix application!
|
|
|
|
# ========================================================
|
|
|
|
export PATH="/usr/bin:/usr/local/bin:/usr/X11R6/bin:/bin:$PATH"
|
|
|
|
export USER="`id -un`"
|
|
|
|
export DISPLAY=127.0.0.1:0.0
|
|
|
|
export MAKE_MODE=unix
|
|
|
|
|
2001-05-17 15:11:01 +00:00
|
|
|
unset DOSDRIVE
|
|
|
|
unset DOSDIR
|
|
|
|
unset TMPDIR
|
|
|
|
unset TMP
|
|
|
|
|
|
|
|
for i in /etc/profile.d/*.sh ; do
|
|
|
|
if [ -f $i ]; then
|
|
|
|
. $i
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
cd "$HOME"
|
|
|
|
|
|
|
|
test -f ./.bashrc && . ./.bashrc
|