]> arthur.barton.de Git - ConfigScripts.git/blobdiff - user/bashrc
Read ~/.profile.user-1st after initializing basic environment
[ConfigScripts.git] / user / bashrc
index 96a43950ce1168f872a5df86f7d141bf1fbf6d37..3bfc2c0012bde3b66fc5dda2d4465ee3ee6f6e62 100644 (file)
@@ -1,6 +1,6 @@
 #
 # ~/.bashrc: executed by bash(1) for non-login shells.
-# Written 2006-2009 by Alexander Barton (alex@barton.de)
+# Written 2006-2014 by Alexander Barton (alex@barton.de)
 #
 # This script is read in by interactive bash shells, called manually or
 # as login shells (the latter is implemented by sourcing this file from
 # individual ~/bashrc.user file!
 #
 
-[ -e ~/.ConfigScripts.debug ] && echo " >> ~/.bashrc ..."
+[ -e ~/.ConfigScripts.debug ] && echo " .. ~/.bashrc ..."
 
 [ -r ~/.bashrc.user-1st ] && source ~/.bashrc.user-1st
 [ -z "$BASHRCREAD" -a -r ~/.etc/bashrc ] && source ~/.etc/bashrc
 [ -z "$BASHRCREAD" -a -r /etc/bashrc ] && source /etc/bashrc
+
+[ -e ~/.ConfigScripts.debug ] && echo " >> ~/.bashrc ..."
+
 [ -r ~/.bashrc.user ] && source ~/.bashrc.user
+[ -r ~/.bash_aliases ] && source ~/.bash_aliases
 
 # -eof-