diff options
author | wosch <wosch@FreeBSD.org> | 1997-03-08 16:35:39 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1997-03-08 16:35:39 +0000 |
commit | 22b37bfd18cacaf020fa48f90f14139cd98a39da (patch) | |
tree | 82807021b3c6bfccccf7f800c6685c7e4049c009 /share/skel | |
parent | f1600b259059317596b17fb672255ca96bb43f59 (diff) | |
download | FreeBSD-src-22b37bfd18cacaf020fa48f90f14139cd98a39da.zip FreeBSD-src-22b37bfd18cacaf020fa48f90f14139cd98a39da.tar.gz |
Enable some aliases.
Add example for variable CDPATH, commented out.
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 aba5c80..4a173c9 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 |