1 # This is the default standard profile provided to a user.
2 # They are expected to edit it to meet their own needs.
4 stty erase ^? intr ^C kill ^U echoe
5 PATH=/epic/bin:/bin:/home/bin:/usr/bin:/bin:/opt/std/bin:/usr/local/bin:/usr/sbin
10 PS1='[$LOGNAME@$HOST:$PWD]$ '
14 # Try to use tcsh or bash if available
15 if [[ -a /usr/local/bin/bash ]]
17 SHELL="/usr/local/bin/bash"
18 export SHELL; exec $SHELL
23 export SHELL; exec $SHELL
26 # if current $TERM isn't valid, fall-back to TERM=xterm-color or TERM=xterm
27 case $(tput colors 2>&1) in
29 export TERM=xterm-color
30 case $(tput colors 2>&1) in