]> arthur.barton.de Git - ConfigScripts.git/blob - user/bash_profile
Initial import into GIT repository.
[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 export LANG="de_DE.ISO8859-1"
13 export LC_MESSAGES="C"
14 export EMAIL="alex@barton.de"
15 export WWW_HOME="http://barton.de/"
16 export NNTPSERVER="news.individual.de"
17 export CVS_RSH=ssh
18
19 [ "$OSTYPE" != "Aux" ] && ulimit -c 2048
20
21 if [ -f ~/.bashrc ]; then
22         . ~/.bashrc
23 fi
24
25 # -eof-