957802cd0c
With the import of Xorg, a proper separation between login-time and sub shell-time of the environment setup is necessary. Instead of re-developping this from scratch, I am taking the opportunity to import the NetBSD default environment. Change-Id: Ib6a8fbd9c2f407ccd59be57a52ef9df21c2c9ce7
20 lines
536 B
Text
20 lines
536 B
Text
# $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
|