1# This is the filename where your incoming mail arrives.
2MAIL=~/mbox
3MAILCHECK=30
4
5HISTFILE=~/.history/history.$HOSTNAME
6
7PATH1=/usr/homes/chet/bin.$HOSTTYPE:/usr/local/bin/gnu:
8PATH2=/usr/local/bin:/usr/ucb:/bin:/usr/bin/X11:.
9PATH3=/usr/bin:/usr/new/bin:/usr/contrib/bin
10PATH=$PATH1:$PATH2:$PATH3
11
12EDITOR=/usr/local/bin/ce VISUAL=/usr/local/bin/ce FCEDIT=/usr/local/bin/ce
13
14SHELL=${SHELL:-${BASH:-/bin/bash}}
15
16PAGER=/usr/local/bin/less
17LESS='-i -e -M -P%t?f%f :stdin .?pb%pb\%:?lbLine %lb:?bbByte %bb:-...'
18#
19# Bogus 1003.2 variables.  This should really be in /etc/profile
20#
21LOGNAME=${USER-$(whoami)}
22TZ=US/Eastern
23
24export HOME VISUAL EDITOR MAIL SHELL PATH TERM 
25export PAGER LESS TERMCAP HISTSIZE HISTFILE MAIL MAILCHECK LOGNAME TZ
26
27PS1="${HOSTNAME}\$ "
28PS2='> '
29export PS1 PS2
30
31umask 022
32
33if [ -f /unix ] ; then
34	stty intr ^c	# bogus
35fi
36
37if [ -f ~/.bashrc ] ; then
38	. ~/.bashrc
39fi
40