12 lines
163 B
Plaintext
12 lines
163 B
Plaintext
|
|
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
|