Sophie

Sophie

distrib > Mandriva > 10.0 > i586 > by-pkgid > 6eb9582fcca27ffcfb8211cf3104a262 > files > 16

bash1-1.14.7-31mdk.src.rpm

# /etc/bashrc

# System wide functions and aliases
# Environment stuff goes in /etc/profile

if [ -n "PROFILE_LOADED" -a -e /etc/profile ]; then
    . /etc/profile
fi

unset PROFILE_LOADED

# For some unknown reason bash refuses to inherit
# PS1 in some circumstances that I can't figure out.
# Putting PS1 here ensures that it gets loaded every time.
PS1="[\u@\h \W]\\$ "

alias which="type -path"
alias md=mkdir
alias rd=rmdir
alias ls="ls --color=auto"
alias cd..="cd .."
alias ll="ls -l"