2010-12-27 06:38:52 +03:00
|
|
|
# $NetBSD: shrc,v 1.7 2010/12/27 03:38:52 christos Exp $
|
2010-05-03 21:15:58 +04:00
|
|
|
#
|
|
|
|
# System-wide .shrc file for sh(1).
|
|
|
|
|
2006-09-14 17:01:31 +04:00
|
|
|
ll(){ ls -l ${1+"$@"}; }
|
|
|
|
|
|
|
|
case "$-" in *i*)
|
2009-02-14 12:53:07 +03:00
|
|
|
if /bin/test -z "${HOST}"; then
|
2010-12-27 06:38:52 +03:00
|
|
|
HOST="$(hostname)"
|
2009-02-14 12:53:07 +03:00
|
|
|
fi
|
2006-09-14 17:01:31 +04:00
|
|
|
PS1="${HOST%%.*}$PS1"
|
|
|
|
set -o emacs
|
2006-10-08 02:50:51 +04:00
|
|
|
# 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
|
2006-09-14 17:01:31 +04:00
|
|
|
;;
|
2006-09-22 12:00:33 +04:00
|
|
|
esac
|