# /etc/bashrc

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

# 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 l="ls -l --color=yes"
alias lc="ls -C --color=yes"
alias lf="ls -p --color=yes"
LS_COLORS="di=32";					export LS_COLORS
