150476Speter# $FreeBSD$
212554Sjkh#
318450Swosch# .profile - Bourne Shell startup script for login shells
418450Swosch#
518450Swosch# see also sh(1), environ(7).
618450Swosch#
715734Swosch
8266029Sbdrewery# These are normally set through /etc/login.conf.  You may override them here
9266029Sbdrewery# if wanted.
10266029Sbdrewery# PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:$HOME/bin; export PATH
11266029Sbdrewery# BLOCKSIZE=K;	export BLOCKSIZE
1215750Swosch
1322855Sjoerg# Setting TERM is normally done through /etc/ttys.  Do only override
1422855Sjoerg# if you're sure that you'll never log in via telnet or xterm or a
1522855Sjoerg# serial line.
16199243Sed# TERM=xterm; 	export TERM
1718450Swosch
1818450SwoschEDITOR=vi;   	export EDITOR
1918450SwoschPAGER=more;  	export PAGER
2018450Swosch
2127865Swosch# set ENV to a file invoked each time sh is started for interactive use.
2227865SwoschENV=$HOME/.shrc; export ENV
2378771Snik
24190477Sruif [ -x /usr/games/fortune ] ; then /usr/games/fortune freebsd-tips ; fi
25