From e4ed666230d40e4a82e24f26346b323be0442e1a Mon Sep 17 00:00:00 2001 From: wosch Date: Sun, 12 May 1996 14:32:23 +0000 Subject: Add comments for some useful aliases 8-bit locale a nicer prompt --- share/skel/dot.profile | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'share/skel') 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 + -- cgit v1.1