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