# /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]\\$ " # Ted recommends prompt with hostname, full path, and command number: PS1="\h:\w \! \\$ " export PS1 alias which="type -path" alias ls="ls --color=auto" alias ll='ls -FAl'