NetBSD/etc/shrc

18 lines
415 B
Plaintext

# $NetBSD: shrc,v 1.6 2010/05/03 17:15:58 hubertf Exp $
#
# System-wide .shrc file for sh(1).
ll(){ ls -l ${1+"$@"}; }
case "$-" in *i*)
if /bin/test -z "${HOST}"; then
HOST=`hostname`
fi
PS1="${HOST%%.*}$PS1"
set -o emacs
# This file is used by shells that might not support
# set -o tabcomplete, so check before trying to use it.
( set -o tabcomplete 2>/dev/null ) && set -o tabcomplete
;;
esac