# .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # enable programmable completion features if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi if [ "$PS1" ]; then # If this is an xterm set the title to user@host case $TERM in xterm*|rxvt*) PS1="\u-\h-\#-> " ;; *) ;; esac ulimit -S -c 0 # Don't want any coredumps. set -o notify set -o noclobber # Don't let output redirection overwrite files set -o ignoreeof # Disable ^D logout feature alias ls='ls -aF' alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' export HISTFILESIZE=1000 # the bash history should save 1000 commands export HISTCONTROL=ignoredups #don't put duplicate lines in the history. fi