dot.profile revision 36699
136699Skuriyama#	$Id: dot.profile,v 1.15 1997/09/26 08:28:31 joerg Exp $
212554Sjkh#
318450Swosch# .profile - Bourne Shell startup script for login shells
418450Swosch#
518450Swosch# see also sh(1), environ(7).
618450Swosch#
715734Swosch
836699Skuriyama# remove /usr/games and /usr/X11R6/bin if you want
936699SkuriyamaPATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/bin:/usr/X11R6/bin:$HOME/bin; export PATH
1015750Swosch
1122855Sjoerg# Setting TERM is normally done through /etc/ttys.  Do only override
1222855Sjoerg# if you're sure that you'll never log in via telnet or xterm or a
1322855Sjoerg# serial line.
1422855Sjoerg# Use cons25l1 for iso-* fonts
1523532Swosch# TERM=cons25; 	export TERM
1618450Swosch
1718450SwoschBLOCKSIZE=K;	export BLOCKSIZE
1818450SwoschEDITOR=vi;   	export EDITOR
1918450SwoschPAGER=more;  	export PAGER
2029871Sjoerg# make mail(1) happy:
2129871Sjoergcrt=24;		export crt
2218450Swosch
2327865Swosch# set ENV to a file invoked each time sh is started for interactive use.
2427865SwoschENV=$HOME/.shrc; export ENV
25