]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - share/skel/dot.profile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / share / skel / dot.profile
1 # $FreeBSD$
2 #
3 # .profile - Bourne Shell startup script for login shells
4 #
5 # see also sh(1), environ(7).
6 #
7
8 # remove /usr/games if you want
9 PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:$HOME/bin; export PATH
10
11 # Setting TERM is normally done through /etc/ttys.  Do only override
12 # if you're sure that you'll never log in via telnet or xterm or a
13 # serial line.
14 # TERM=xterm;   export TERM
15
16 BLOCKSIZE=K;    export BLOCKSIZE
17 EDITOR=vi;      export EDITOR
18 PAGER=more;     export PAGER
19
20 # set ENV to a file invoked each time sh is started for interactive use.
21 ENV=$HOME/.shrc; export ENV
22
23 if [ -x /usr/games/fortune ] ; then /usr/games/fortune freebsd-tips ; fi