X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=user%2Fbashrc;h=052b18c6ffa7a328bcd2d90a4da625839848dcd2;hb=40ec1a0e40e4fa0e55ea496b01761ec0a8d761d7;hp=81638e66be74e9fc0ed9a233c1ce0fec2be11e11;hpb=2af88f34a45ca71f5901face30236c74e77873b5;p=ConfigScripts.git diff --git a/user/bashrc b/user/bashrc index 81638e6..052b18c 100644 --- a/user/bashrc +++ b/user/bashrc @@ -1,48 +1,21 @@ # # ~/.bashrc: executed by bash(1) for non-login shells. +# Written 2006-2009 by Alexander Barton (alex@barton.de) # -# 2008-08-07, alex@barton.de -# - Code cleanup, moved parts to /etc/[bash.]bashrc -# 2006-01-08, alex@barton.de -# - Initial version. +# 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! # -[ -z "$BASHRCREAD" -a -r /etc/bash.bashrc ] && source /etc/bash.bashrc -[ -z "$BASHRCREAD" -a -r /etc/bashrc ] && source /etc/bashrc - -# aptitude -type -p aptitude >/dev/null 2>&1 -[ $? -eq 0 ] && alias aptitude="LC_ALL=C sudo aptitude" - -# btdownload -type -p btdownloadcurses >/dev/null 2>&1 -[ $? -eq 0 ] && alias "btdownloadcurses"="btdownloadcurses --max_upload_rate 16" - -# ccache -[ -d "/usr/lib/ccache" ] && PATH="/usr/lib/ccache:$PATH" - -# dpkg-buildpackage -type -p dpkg-buildpackage >/dev/null 2>&1 -[ $? -eq 0 ] && alias dpkg-buildpackage="dpkg-buildpackage -kC24A0F637E364856" - -# gitk -type -p gitk >/dev/null 2>&1 -[ $? -eq 0 ] && alias gitk="gitk 2>/dev/null" - -# screen -type -p screen >/dev/null 2>&1 -if [ $? -eq 0 ]; then - alias "s"="screen" - alias "sr"="screen -dr" - alias "sx"="screen -x" - type -p irssi >/dev/null 2>&1 - [ $? -eq 0 ] && alias "si"="screen irssi" -fi - -# slrn -type -p cleanscore >/dev/null 2>&1 -[ $? -eq 0 ] && alias slrn="cleanscore -f ~/.slrnscore && slrn" +[ -e ~/.ConfigScripts.debug ] && echo " >> ~/.bashrc ..." -alias pingblack="ssh gw1-0.fr.pingnet.de sudo blacklist" +[ -z "$BASHRCREAD" -a -r ~/.etc/bashrc ] && source ~/.etc/bashrc +[ -z "$BASHRCREAD" -a -r /etc/bashrc ] && source /etc/bashrc +[ -r ~/.bashrc.user ] && source ~/.bashrc.user # -eof-