diff options
author | Chmouel Boudjnah <chmouel@mandriva.org> | 1999-12-28 09:52:50 +0000 |
---|---|---|
committer | Chmouel Boudjnah <chmouel@mandriva.org> | 1999-12-28 09:52:50 +0000 |
commit | 3be5b10b0310ba35d64a06aeb889e7a783b4aab1 (patch) | |
tree | e0c6add87922b77ed8107c03629110aa508fc1d4 /bashrc | |
parent | da307b8c37f9fe40a48938b1b519e9fcb7a3952d (diff) | |
download | rootfiles-oxygen.tar rootfiles-oxygen.tar.gz rootfiles-oxygen.tar.bz2 rootfiles-oxygen.tar.xz rootfiles-oxygen.zip |
Initial revisionoxygentopic/MandrakeSoft
Diffstat (limited to 'bashrc')
-rw-r--r-- | bashrc | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +# .bashrc +# Chmouel Boudjnah <chmouel@mandrakesoft.com> + +# 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 |