X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=user%2Fbashrc;h=052b18c6ffa7a328bcd2d90a4da625839848dcd2;hb=40ec1a0e40e4fa0e55ea496b01761ec0a8d761d7;hp=18a8ac30c27d9590f1c9e3787b74c796b59dbf4d;hpb=036793dc4383c75583d397a843d43e4977cf85da;p=ConfigScripts.git diff --git a/user/bashrc b/user/bashrc index 18a8ac3..052b18c 100644 --- a/user/bashrc +++ b/user/bashrc @@ -1,55 +1,21 @@ # # ~/.bashrc: executed by bash(1) for non-login shells. -# Written 2006-2008 by Alexander Barton (alex@barton.de) +# Written 2006-2009 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 /tmp/ConfigDebug.$USER ] && echo " >> ~/.bashrc ..." +[ -e ~/.ConfigScripts.debug ] && echo " >> ~/.bashrc ..." -[ -z "$BASHRCREAD" -a -r /etc/bash.bashrc ] && source /etc/bash.bashrc +[ -z "$BASHRCREAD" -a -r ~/.etc/bashrc ] && source ~/.etc/bashrc [ -z "$BASHRCREAD" -a -r /etc/bashrc ] && source /etc/bashrc -[ -z "$BASHRCREAD" -a -r $HOME/.etc/bashrc ] && source $HOME/.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" - -alias bblack="ssh arthur.barton.de sudo blacklist" -alias pingblack="ssh gw1-0.fr.pingnet.de sudo blacklist" - -BLACK() { - echo " --- Arthur.Barton.DE ---" - bblack $* - echo " --- GW1-0.FR.PingNet.DE ---" - pingblack $* -} +[ -r ~/.bashrc.user ] && source ~/.bashrc.user # -eof-