dot.profile revision 22855
1#	$FreeBSD: head/share/skel/dot.profile 22855 1997-02-17 18:56:29Z joerg $
2#
3# .profile - Bourne Shell startup script for login shells
4#
5# see also sh(1), environ(7).
6#
7
8# add /usr/games or /usr/X11R6/bin if you want
9PATH=/sbin:/bin:/usr/sbin:/usr/bin:/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# Use cons25l1 for iso-* fonts
15#TERM=cons25; 	export TERM
16
17BLOCKSIZE=K;	export BLOCKSIZE
18EDITOR=vi;   	export EDITOR
19PAGER=more;  	export PAGER
20
21# file permissions: rwxr-xr-x
22#
23# umask	022
24
25# Uncomment next line to enable the builtin emacs(1) command line editor
26# in sh(1), e.g. C-a -> beginning-of-line.
27# set -o emacs
28
29
30# # some useful aliases
31# alias h='fc -l'
32# alias j=jobs
33# alias m=$PAGER
34# alias ll='ls -lagFo'
35# alias g='egrep -i'
36 
37# # be paranoid
38# alias cp='cp -ip'
39# alias mv='mv -i'
40# alias rm='rm -i'
41
42
43# # 8-bit locale (English, USA), to read umlauts in vi(1).
44# LANG=en_US.ISO_8859-1; export LANG
45 
46
47# # set prompt: ``username@hostname$ '' 
48# PS1="`whoami`@`hostname | sed 's/\..*//'`"
49# case `id -u` in
50# 	0) PS1="${PS1}# ";;
51# 	*) PS1="${PS1}$ ";;
52# esac
53