X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=user%2Fbash_profile;h=554658b753f6722574ca402ed54e6c1e07dfd728;hb=480a289602f8a7bf8a599ca35d66851c3d8ff33a;hp=9d237dd7e9f7c7009ddc54bb030b2d7e3777e7a5;hpb=7b7dced5819ad3d1e6aca1dc7c83a80c2959fb56;p=ConfigScripts.git diff --git a/user/bash_profile b/user/bash_profile index 9d237dd..554658b 100644 --- a/user/bash_profile +++ b/user/bash_profile @@ -1,29 +1,19 @@ # # ~/.bash_profile: executed by bash(1) for login shells. -# Written 2003-2008 by Alexander Barton (alex@barton.de) +# Written 2003-2009 by Alexander Barton (alex@barton.de) +# +# This script is read in by bash login shells. +# +# PLEASE NOTE: +# To make this script generic, it sources ~/bash_profile.user if it exists. +# So you shouldn't make changes to this script, but create your own +# individual ~/bash_profile.user file! # -[ -e /tmp/ConfigDebug.$USER ] && echo " >> ~/.bash_profile ..." - -[ -z "$PROFILEREAD" -a -r $HOME/.etc/profile ] && source $HOME/.etc/profile - -[ -n "$LANG" ] || export LANG="de_DE.ISO8859-1" -export LC_MESSAGES="C" -export EMAIL="alex@barton.de" -export WWW_HOME="http://barton.de/" -export NNTPSERVER="news.individual.de" -export CVS_RSH=ssh - -[ "$OSTYPE" != "Aux" ] && ulimit -c 2048 - -if [ -z "$XAUTHORITY" -a -r $HOME/.Xauthority ]; then - cp $HOME/.Xauthority /tmp/Xauthority-$USER - chmod 600 /tmp/Xauthority-$USER - export XAUTHORITY="/tmp/Xauthority-$USER" -fi +[ -e ~/.ConfigScripts.debug ] && echo " >> ~/.bash_profile ..." -if [ -f ~/.bashrc ]; then - . ~/.bashrc -fi +[ -z "$PROFILEREAD" -a -r ~/.etc/profile ] && source ~/.etc/profile +[ -r ~/.bash_profile.user ] && source ~/.bash_profile.user +[ -r ~/.bashrc ] && source ~/.bashrc # -eof-