]> arthur.barton.de Git - ConfigScripts.git/blob - user/bash_profile
Read global files from $HOME/.etc if we can't install to /etc.
[ConfigScripts.git] / user / bash_profile
1 #
2 # ~/.bash_profile: executed by bash(1) for login shells.
3 #
4 # 2008-08-07, alex@barton.de
5 #  - Code cleanup
6 # 2006-01-09, alex@barton.de
7 #  - moved export's here.
8 # 2003-07-06, alex@Arthur.Ath.CX
9 #  - initial version.
10 #
11
12 [ -e /tmp/ConfigDebug.$USER ] && echo " >> ~/.bash_profile ..."
13
14 [ -z "$PROFILEREAD" -a -r $HOME/.etc/profile ] && source $HOME/.etc/profile
15
16 [ -n "$LANG" ] || export LANG="de_DE.ISO8859-1"
17 export LC_MESSAGES="C"
18 export EMAIL="alex@barton.de"
19 export WWW_HOME="http://barton.de/"
20 export NNTPSERVER="news.individual.de"
21 export CVS_RSH=ssh
22
23 [ "$OSTYPE" != "Aux" ] && ulimit -c 2048
24
25 if [ -f ~/.bashrc ]; then
26         . ~/.bashrc
27 fi
28
29 # -eof-