This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# do regular system bashrc stuff, if there's one set up | |
if [ -f /etc/bashrc ] ; then | |
. /etc/bashrc | |
fi | |
# use 256 colors if available, otherwise default to | |
if [ -f /usr/share/terminfo/x/xterm-256color ] ; then | |
export TERM=xterm-256color | |
else | |
export TERM=xterm |