diff options
author | Wolfram Schneider <wosch@FreeBSD.org> | 1997-03-08 16:35:39 +0000 |
---|---|---|
committer | Wolfram Schneider <wosch@FreeBSD.org> | 1997-03-08 16:35:39 +0000 |
commit | 1d2134f27dd0a465d30a198e5730e69d85462628 (patch) | |
tree | 5598af62f188aa4fb28125063762bed32b6a760b /share/skel | |
parent | 44d8727103332ecc428f40269c8c6d30e64d4c9e (diff) | |
download | src-1d2134f27dd0a465d30a198e5730e69d85462628.tar.gz src-1d2134f27dd0a465d30a198e5730e69d85462628.zip |
Notes
Diffstat (limited to 'share/skel')
-rw-r--r-- | share/skel/dot.profile | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/share/skel/dot.profile b/share/skel/dot.profile index aba5c8084822..4a173c977416 100644 --- a/share/skel/dot.profile +++ b/share/skel/dot.profile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: dot.profile,v 1.10 1997/02/22 13:56:33 peter Exp $ # # .profile - Bourne Shell startup script for login shells # @@ -12,7 +12,7 @@ PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin:$HOME/bin; export PATH # if you're sure that you'll never log in via telnet or xterm or a # serial line. # Use cons25l1 for iso-* fonts -#TERM=cons25; export TERM +# TERM=cons25; export TERM BLOCKSIZE=K; export BLOCKSIZE EDITOR=vi; export EDITOR @@ -27,12 +27,13 @@ PAGER=more; export PAGER # set -o emacs -# # some useful aliases -# alias h='fc -l' -# alias j=jobs -# alias m=$PAGER -# alias ll='ls -lagFo' -# alias g='egrep -i' +# some useful aliases +alias h='fc -l' +alias j=jobs +alias m=$PAGER +alias ll='ls -lagFo' +alias l='ls -l' +alias g='egrep -i' # # be paranoid # alias cp='cp -ip' @@ -50,3 +51,6 @@ PAGER=more; export PAGER # 0) PS1="${PS1}# ";; # *) PS1="${PS1}$ ";; # esac + +# search path for cd(1) +# CDPATH=.:$HOME |