Home | History | Annotate | Line # | Download | only in etc
shrc revision 1.5
      1 ll(){ ls -l ${1+"$@"}; }
      2 
      3 case "$-" in *i*)
      4 	if /bin/test -z "${HOST}"; then
      5 		HOST=`hostname`
      6 	fi
      7 	PS1="${HOST%%.*}$PS1"
      8 	set -o emacs
      9 	# This file is used by shells that might not support
     10 	# set -o tabcomplete, so check before trying to use it.
     11 	( set -o tabcomplete 2>/dev/null ) && set -o tabcomplete
     12 	;;
     13 esac
     14