# sample .bashrc for gpu logins alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' alias ln='ln -i' alias ls='ls -F' alias df='df -k' alias du='du -k' alias vi='vim' # No EOF to close shell export IGNOREEOF="Yes" # prompt export PS1='\u@\h\$ ' # add my bin and ~jhoover/bin to path, if this is the first time through # change ~jhoover to where the Git executables are actually located if [[ ( "$SHLVL" == '' ) || ( "$SHLVL" == '1' ) ]] then export PATH=~/bin:~jhoover/bin:$PATH fi