# $NetBSD: shrc,v 1.7 2010/12/27 03:38:52 christos Exp $ # # System-wide .shrc file for sh(1). ll(){ ls -lp ${1+"$@"}; } case "$-" in *i*) if /bin/test -z "${HOST}"; then HOST="$(hostname)" fi /bin/test "$(whoami)" = root && PS1='# ' || PS1='$ ' case "$0,$TERM" in *ksh,xterm*) PS1=' ]2;$PWD'${HOST%%.*}$PS1 ;; *) PS1=${HOST%%.*}$PS1 ;; esac 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