Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!zaphod.mps.ohio-state.edu!sunybcs!sbcs!stealth!brnstnd From: brnstnd@stealth.acf.nyu.edu (Dan Bernstein) Newsgroups: comp.unix.questions Subject: Re: modifying terminfo Message-ID: <4216@sbcs.sunysb.edu> Date: 11 Dec 89 19:18:31 GMT References: <1048@zip.eecs.umich.edu> Sender: news@sbcs.sunysb.edu Reply-To: brnstnd@stealth.acf.nyu.edu (Dan Bernstein) Distribution: usa Organization: IR Lines: 13 I have a ~/.termcap with the termcaps I actually use. In .init.term are, among other things: if ($term == network) set term=dm3045 setenv TERMCAP $HOME/.termcap set noglob;eval `tset -s -Q "?$term"`;unset noglob;set term=$TERM if ($term == unknown) then echo 'Trying local terminal capability database:' setenv TERMCAP /etc/termcap set noglob;eval `tset -s -Q "?$term"`;unset noglob;set term=$TERM endif ---Dan