From 3be5b10b0310ba35d64a06aeb889e7a783b4aab1 Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Tue, 28 Dec 1999 09:52:50 +0000 Subject: Initial revision --- bashrc | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 bashrc (limited to 'bashrc') diff --git a/bashrc b/bashrc new file mode 100644 index 0000000..142b4c9 --- /dev/null +++ b/bashrc @@ -0,0 +1,31 @@ +# .bashrc +# Chmouel Boudjnah + +# User specific aliases and functions + +alias rm='rm -i' +alias cp='cp -i' +alias mv='mv -i' +alias d='ls' +alias s='cd ..' +alias p='cd -' + +echo $PATH|grep -q /sbin || export PATH=$PATH:/sbin:/usr/sbin + +# Tell to df to don't see the supermount filesystems. +alias df='df -x supermount' + +# +[ -z $DISPLAY ] || . /etc/profile.d/color_ls.sh + +# Source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc +fi + +PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin +ENV=$HOME/.bashrc +USERNAME="root" +export USERNAME ENV PATH + +[ -z $INPUTRC ] && export INPUTRC=/etc/inputrc -- cgit v1.2.1