diff options
author | wosch <wosch@FreeBSD.org> | 1996-05-12 14:32:23 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-05-12 14:32:23 +0000 |
commit | e4ed666230d40e4a82e24f26346b323be0442e1a (patch) | |
tree | 142ca02a666b16395b5b6a6b601f138ffe7537ba /share/skel | |
parent | bbacd01badcfa4eb305bc701a2a42e896ac6467f (diff) | |
download | FreeBSD-src-e4ed666230d40e4a82e24f26346b323be0442e1a.zip FreeBSD-src-e4ed666230d40e4a82e24f26346b323be0442e1a.tar.gz |
Add comments for
some useful aliases
8-bit locale
a nicer prompt
Diffstat (limited to 'share/skel')
-rw-r--r-- | share/skel/dot.profile | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/share/skel/dot.profile b/share/skel/dot.profile index 78bc1d3..7a2b5e8 100644 --- a/share/skel/dot.profile +++ b/share/skel/dot.profile @@ -1,11 +1,37 @@ -# $Id: dot.profile,v 1.4 1995/12/01 20:13:42 jkh Exp $ +# $Id: dot.profile,v 1.5 1996/05/11 19:15:17 wosch Exp $ # PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin export PATH TERM=cons25 export TERM + # Uncomment next line to enable the builtin emacs(1) command line editor # in sh(1), e.g. C-a -> beginning-of-line. # set -o emacs + +# # some useful aliases +# alias h='fc -l' +# alias j=jobs +# alias m=$PAGER +# alias ll='ls -lagFo' +# alias g='egrep -i' + +# # be paranoid +# alias cp='cp -ip' +# alias mv='mv -i' +# alias rm='rm -i' + + +# # 8-bit locale (English, USA) +# LANG=en_US.ISO_8859-1; export LANG + + +# # set prompt: ``username@hostname$ '' +# PS1="`whoami`@`hostname | sed 's/\..*//'`" +# case `id -u` in +# 0) PS1="${PS1}# ";; +# *) PS1="${PS1}$ ";; +# esac + |