X-Git-Url: http://git.iain.cx/?p=profile.git;a=blobdiff_plain;f=.bash_profile;h=b8e11d4ec7146117735841abf67473f88186c7bb;hp=58f8c11feb6d225823e0f88a3440683bb7a70054;hb=5844a10481f6b9bfa97393014b53e573cfd992a9;hpb=ca64aa2532e685c218f01e97f72cb9478f489bba diff --git a/.bash_profile b/.bash_profile index 58f8c11..b8e11d4 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,5 +1,24 @@ -# $Id$ if $(tty -s) || [ "${0:0:1}" = "-" ]; then - for i in ~/.profile.d/*.bashrc; do . $i; done; unset i + # Remember if nocaseglob was on. + shopt -q nocaseglob + nocg=$? + # Turn it off so we source stuff in the right order. + shopt -u nocaseglob + + # Remember LC_ALL. + lc_all=$LC_ALL + # Turn it off to set case-sensitive matching + LC_ALL=C + + # Source all scripts. + for i in ~/.profile.d/*.bashrc; do . "$i"; done; unset i + + # Maybe turn nocaseglob back on. + [ $nocg = 0 ] && shopt -s nocaseglob + + # Reset LC_ALL. + LC_ALL=$lc_all + + unset lc_all nocg __ps1 fi