Catch up with UNIX98-style PTY's.
This commit is contained in:
parent
ed014ff383
commit
c08a21642c
@ -11,7 +11,10 @@ if [ "$tty" = "??" ]; then
|
||||
tty="-"
|
||||
ttyshort="-"
|
||||
else
|
||||
ttyshort=`echo $tty | cut -c 4-`
|
||||
case $tty in
|
||||
pts/*) ttyshort=`echo $tty | cut -c 5-` ;;
|
||||
*) ttyshort=`echo $tty | cut -c 4-` ;;
|
||||
esac
|
||||
fi
|
||||
sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
|
||||
ln -sf /bin/sleep $sleep
|
||||
|
@ -11,7 +11,10 @@ if [ "$tty" = "??" ]; then
|
||||
tty="-"
|
||||
ttyshort="-"
|
||||
else
|
||||
ttyshort=`echo $tty | cut -c 4-`
|
||||
case $tty in
|
||||
pts/*) ttyshort=`echo $tty | cut -c 5-` ;;
|
||||
*) ttyshort=`echo $tty | cut -c 4-` ;;
|
||||
esac
|
||||
fi
|
||||
sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
|
||||
ln -sf /bin/sleep $sleep
|
||||
|
Loading…
x
Reference in New Issue
Block a user