From: kstailey Date: Mon, 16 Dec 1996 03:49:50 +0000 (+0000) Subject: changed not to hardcode sun console name as "console" X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=d1789af5a9737e0b4403675352171485ccf6f552;p=openbsd changed not to hardcode sun console name as "console" --- diff --git a/etc/ksh.kshrc b/etc/ksh.kshrc index 59a1714e78c..8442ffb6d82 100644 --- a/etc/ksh.kshrc +++ b/etc/ksh.kshrc @@ -1,5 +1,5 @@ : -# $OpenBSD: ksh.kshrc,v 1.1 1996/08/14 08:28:04 downsj Exp $ +# $OpenBSD: ksh.kshrc,v 1.2 1996/12/16 03:49:50 kstailey Exp $ # # NAME: # ksh.kshrc - global initialization for ksh @@ -54,7 +54,9 @@ case "$-" in tty=`tty` tty=`basename $tty` TTY=${TTY:-$tty} - + # console is the system console device + console=`sysctl machdep.console_device | cut -d' ' -f3` + set -o emacs alias ls='ls -CF' @@ -82,7 +84,7 @@ case "$-" in case "$TERM" in sun*) # these are not as neat as their csh equivalents - if [ "$tty" != console ]; then + if [ "$tty" != "$console" ]; then # ilabel ILS='\033]L'; ILE='\033\\' # window title bar