Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Path: utzoo!watmath!clyde!floyd!harpo!seismo!hao!hplabs!sri-unix!leres@lbl-csam
From: leres%lbl-csam@sri-unix.UUCP
Newsgroups: net.unix-wizards
Subject: Re: more startup time
Message-ID: <16131@sri-arpa.UUCP>
Date: Sun, 29-Jan-84 16:02:33 EST
Article-I.D.: sri-arpa.16131
Posted: Sun Jan 29 16:02:33 1984
Date-Received: Mon, 6-Feb-84 16:07:50 EST
Lines: 15

From:  Craig Leres 

Here's an alternate way to set up the TERMCAP environment variable which
avoids the use of a temporary file:

    set noglob _t=`tset -QS -m dialup:?h19 -m network:$TERM`
    if ($TERM == network) set _t=`tset -QS ?h19`
    setenv TERM $_t[1]
    setenv TERMCAP $_t[2]
    unset noglob _t

It also contains a clever hack that trys to make use of the terminal
type that gets passed when you rlogin.

		Craig