summaryrefslogtreecommitdiff
path: root/.kshrc
blob: bd4de5c2cfa740a7b912ca9e6428dc2dd75ae6e6 (plain)
1
2
3
4
5
6
7
8
9
10
# this file is processed on each invocation of ksh

# skip the rest if the shell is non-interactive, i.e. is running a script
[[ "$-" != *i* ]] && return

PS1="`shorthostname` ! $ "
HISTSIZE=50
HISTFILE=$HOME/.sh_history	# pdksh doesn't set this by default

alias mail=mailx