From a0b31bc0283071b3bce0ff1469822575608742ec Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sat, 29 Nov 2014 19:13:43 +0100 Subject: [PATCH] Read in "~/.bash_aliases", as Debian does by default --- user/bashrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/user/bashrc b/user/bashrc index ce7fd8d..3bfc2c0 100644 --- a/user/bashrc +++ b/user/bashrc @@ -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 @@ -17,8 +17,10 @@ [ -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 -[ -r ~/.bashrc.user ] && source ~/.bashrc.user [ -e ~/.ConfigScripts.debug ] && echo " >> ~/.bashrc ..." +[ -r ~/.bashrc.user ] && source ~/.bashrc.user +[ -r ~/.bash_aliases ] && source ~/.bash_aliases + # -eof- -- 2.39.2