# # ~/.bashrc: executed by bash(1) for non-login shells. # 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 # the ~/.bash_profile file). # # PLEASE NOTE: # To make this script generic, it sources ~/bashrc.user if it exists. # So you shouldn't make changes to this script, but create your own # individual ~/bashrc.user file! # [ -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-