]> arthur.barton.de Git - ConfigScripts.git/blob - user/bash_profile
Enhance debug messages: print a line for each script.
[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 [ -n "$LANG" ] || export LANG="de_DE.ISO8859-1"
15 export LC_MESSAGES="C"
16 export EMAIL="alex@barton.de"
17 export WWW_HOME="http://barton.de/"
18 export NNTPSERVER="news.individual.de"
19 export CVS_RSH=ssh
20
21 [ "$OSTYPE" != "Aux" ] && ulimit -c 2048
22
23 if [ -f ~/.bashrc ]; then
24         . ~/.bashrc
25 fi
26
27 # -eof-