.bashrc

# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

if [ -n "$PS1" ]; then# junk for interactive shells goes herealias rm='rm -i'alias mv='mv -i'alias cp='cp -i'alias ls='ls --color'PS1='\[\e[38;5;56m\]\u\[\e[32m\]@\[\e[38;5;56m\]\H\[\e[32m\]:\[\e[38;5;56m\]\w\[\e[32m\]\n >>> \[\e[m\]'#PS1='\[\e[0;32m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[1;32m\]\$\[\e[m\] \[\e[1;37m\]'

        alias cd..='cd ..'
        alias vim="vim -p"
        alias vi="vim -p"
        alias root="root -l"
        alias sframe="sframe_main"
        alias makethis="make distclean && make"
        alias l="ls -lha"
        export MY_SVN_REP="svn+ssh://svn.cern.ch/reps/rneves"
        #Tier-3 specific
        setupATLAS
fi
#trick to setup ROOT
if [ -n "$PS1" ]; then# list screen sessions
​        screen -ls
​        export PATH=$PATH:/export/home/rneves/Toolbox/
fi