source: vendor/bash/3.1-p17/examples/startup-files/bash-profile

Last change on this file was 3228, checked in by bird, 18 years ago

bash 3.1

File size: 887 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.