xref: /dragonfly/share/skel/dot.profile (revision 6e285212)
1# $FreeBSD: src/share/skel/dot.profile,v 1.19.2.2 2002/07/13 16:29:10 mp Exp $
2# $DragonFly: src/share/skel/dot.profile,v 1.2 2003/06/17 04:37:02 dillon Exp $
3#
4# .profile - Bourne Shell startup script for login shells
5#
6# see also sh(1), environ(7).
7#
8
9# remove /usr/games and /usr/X11R6/bin if you want
10PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:$HOME/bin; export PATH
11
12# Setting TERM is normally done through /etc/ttys.  Do only override
13# if you're sure that you'll never log in via telnet or xterm or a
14# serial line.
15# Use cons25l1 for iso-* fonts
16# TERM=cons25; 	export TERM
17
18BLOCKSIZE=K;	export BLOCKSIZE
19EDITOR=vi;   	export EDITOR
20PAGER=more;  	export PAGER
21
22# set ENV to a file invoked each time sh is started for interactive use.
23ENV=$HOME/.shrc; export ENV
24
25[ -x /usr/games/fortune ] && /usr/games/fortune freebsd-tips
26