File: bash-profile

package info (click to toggle)
bash 5.3~rc2-1
  • links: PTS
  • area: main
  • in suites: experimental
  • size: 41,548 kB
  • sloc: ansic: 134,239; sh: 8,866; yacc: 5,962; makefile: 4,696; perl: 4,105; asm: 48; awk: 23; sed: 16
file content (39 lines) | stat: -rw-r--r-- 887 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This is the filename where your incoming mail arrives.
MAIL=~/mbox
MAILCHECK=30

HISTFILE=~/.history/history.$HOSTNAME

PATH1=/usr/homes/chet/bin.$HOSTTYPE:/usr/local/bin/gnu:
PATH2=/usr/local/bin:/usr/ucb:/bin:/usr/bin/X11:.
PATH3=/usr/bin:/usr/new/bin:/usr/contrib/bin
PATH=$PATH1:$PATH2:$PATH3

EDITOR=/usr/local/bin/ce VISUAL=/usr/local/bin/ce FCEDIT=/usr/local/bin/ce

SHELL=${SHELL:-${BASH:-/bin/bash}}

PAGER=/usr/local/bin/less
LESS='-i -e -M -P%t?f%f :stdin .?pb%pb\%:?lbLine %lb:?bbByte %bb:-...'
#
# Bogus 1003.2 variables.  This should really be in /etc/profile
#
LOGNAME=${USER-$(whoami)}
TZ=US/Eastern

export HOME VISUAL EDITOR MAIL SHELL PATH TERM 
export PAGER LESS TERMCAP HISTSIZE HISTFILE MAIL MAILCHECK LOGNAME TZ

PS1="${HOSTNAME}\$ "
PS2='> '
export PS1 PS2

umask 022

if [ -f /unix ] ; then
	stty intr ^c	# bogus
fi

if [ -f ~/.bashrc ] ; then
	. ~/.bashrc
fi