summaryrefslogtreecommitdiff
path: root/etc/shrc
blob: c465cf961f6637e7f656772dbac14ee75bb0bdbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#       $NetBSD: shrc,v 1.7 2010/12/27 03:38:52 christos Exp $
#
# System-wide .shrc file for sh(1).

ll(){ ls -l ${1+"$@"}; }

case "$-" in *i*)
	if /bin/test -z "${HOST}"; then
		HOST="$(hostname)"
	fi
	# hostname is set to the ip address by default on MINIX, so
	# don't truncate on the first dot.
	#PS1="${HOST%%.*}$PS1"
	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