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
12 lines
221 B
Text
12 lines
221 B
Text
# $NetBSD: dot.shrc,v 1.8 2007/11/24 11:14:41 pavel Exp $
|
|
|
|
if [ -f /etc/shrc ]; then
|
|
. /etc/shrc
|
|
fi
|
|
|
|
hup(){ (read pid; kill -HUP $pid) </var/run/$1.pid; }
|
|
|
|
case "$-" in *i*)
|
|
# interactive mode settings go here
|
|
;;
|
|
esac
|