Run source ~/.kshrc
to enable the changes.
# $/home/hex1a4/.kshrc, 1.0.3, 14.04.2008$
PATH=/bin:/usr/bin:/usr/local/bin:/usr/local/pgsql/bin:/usr/X11R6/bin:/usr/X11R7/bin:/usr/games:$HOME/bin
EDITOR=/usr/bin/vim
VISUAL=$EDITOR
HISTFILE=$HOME/.ksh_histfile
HISTSIZE=100
TMP=/tmp
TMPDIR=$TMP
TERM=rxvt
COLORTERM=$TERM
PAGER=/usr/bin/less
HOSTNAME=$HOST
export PATH EDITOR HISTFILE HISTSIZE TMP TMPDIR
export TERM COLORTERM PAGER HOSTNAME
# PS1='[ksh]$PWD$ '
PS1='${LOGNAME}@${HOSTNAME} on ${TTY}
[${PWD}] '
PS2='> '
PS3='#? '
# DEBUG=y # uncomment to report
[ "$DEBUG" ] && echo "Entering .kshrc"
set -o allexport
# only ignore eof on login shells
case $- in
*l*) set -o ignoreeof ;;
*) ;;
esac
# screen sets TERM to "screen",
# but most programs don't work as well as they should
# when this is so
# So...
case $TERM in
screen) export TERM=rxvt ;;
esac
alias ls='ls --color=always'
alias grep='grep --color=always'
alias gcc='colorgcc'
alias diff='colordiff'
alias make='colormake'
$xubuntu dotfiles, v0.6.10, 22.08.2009$