1984263bcSMatthew Dillon# $FreeBSD: src/share/skel/dot.profile,v 1.19.2.2 2002/07/13 16:29:10 mp Exp $ 2984263bcSMatthew Dillon# 3984263bcSMatthew Dillon# .profile - Bourne Shell startup script for login shells 4984263bcSMatthew Dillon# 5984263bcSMatthew Dillon# see also sh(1), environ(7). 6984263bcSMatthew Dillon# 7984263bcSMatthew Dillon 8*fbed7187SDaniel Fojt# These are normally set through /etc/login.conf. You may override them here 9*fbed7187SDaniel Fojt# if wanted. 10*fbed7187SDaniel Fojt# PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin; export PATH 11*fbed7187SDaniel Fojt# BLOCKSIZE=K; export BLOCKSIZE 12*fbed7187SDaniel Fojt# A righteous umask 13*fbed7187SDaniel Fojt# umask 22 14984263bcSMatthew Dillon 15984263bcSMatthew Dillon# Setting TERM is normally done through /etc/ttys. Do only override 16984263bcSMatthew Dillon# if you're sure that you'll never log in via telnet or xterm or a 17984263bcSMatthew Dillon# serial line. 18984263bcSMatthew Dillon# Use cons25l1 for iso-* fonts 19984263bcSMatthew Dillon# TERM=cons25; export TERM 20984263bcSMatthew Dillon 21984263bcSMatthew DillonEDITOR=vi; export EDITOR 222af8521cSFrançois TigeotPAGER=less; export PAGER 23984263bcSMatthew Dillon 24984263bcSMatthew Dillon# set ENV to a file invoked each time sh is started for interactive use. 25984263bcSMatthew DillonENV=$HOME/.shrc; export ENV 26984263bcSMatthew Dillon 273546b81cSScott Ullrich[ -x /usr/games/fortune ] && /usr/games/fortune dragonfly-tips 28