Deleted Added
full compact
dot.profile (15750) dot.profile (18450)
1# $Id: dot.profile,v 1.5 1996/05/11 19:15:17 wosch Exp $
1# $Id$
2#
2#
3PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
4export PATH
5TERM=cons25
6export TERM
3# .profile - Bourne Shell startup script for login shells
4#
5# see also sh(1), environ(7).
6#
7
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
8
10
11# use cons25l1 for iso-* fonts
12TERM=cons25; export TERM
13
14BLOCKSIZE=K; export BLOCKSIZE
15EDITOR=vi; export EDITOR
16PAGER=more; export PAGER
17
18# file permissions: rwxr-xr-x
19#
20# umask 022
21
9# Uncomment next line to enable the builtin emacs(1) command line editor
10# in sh(1), e.g. C-a -> beginning-of-line.
11# set -o emacs
12
13
14# # some useful aliases
15# alias h='fc -l'
16# alias j=jobs
17# alias m=$PAGER
18# alias ll='ls -lagFo'
19# alias g='egrep -i'
20
21# # be paranoid
22# alias cp='cp -ip'
23# alias mv='mv -i'
24# alias rm='rm -i'
25
26
22# Uncomment next line to enable the builtin emacs(1) command line editor
23# in sh(1), e.g. C-a -> beginning-of-line.
24# set -o emacs
25
26
27# # some useful aliases
28# alias h='fc -l'
29# alias j=jobs
30# alias m=$PAGER
31# alias ll='ls -lagFo'
32# alias g='egrep -i'
33
34# # be paranoid
35# alias cp='cp -ip'
36# alias mv='mv -i'
37# alias rm='rm -i'
38
39
27# # 8-bit locale (English, USA)
40# # 8-bit locale (English, USA), to read umlauts in vi(1).
28# LANG=en_US.ISO_8859-1; export LANG
29
30
31# # set prompt: ``username@hostname$ ''
32# PS1="`whoami`@`hostname | sed 's/\..*//'`"
33# case `id -u` in
34# 0) PS1="${PS1}# ";;
35# *) PS1="${PS1}$ ";;
36# esac
41# LANG=en_US.ISO_8859-1; export LANG
42
43
44# # set prompt: ``username@hostname$ ''
45# PS1="`whoami`@`hostname | sed 's/\..*//'`"
46# case `id -u` in
47# 0) PS1="${PS1}# ";;
48# *) PS1="${PS1}$ ";;
49# esac
37