<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Help with TERM command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963567#M814580</link>
    <description>Can't comment right now. require the full script :)&lt;BR /&gt;&lt;BR /&gt;could you attach it if it is long or paste it if it is not?&lt;BR /&gt;&lt;BR /&gt;- ramd.</description>
    <pubDate>Thu, 01 May 2003 12:36:30 GMT</pubDate>
    <dc:creator>Ramkumar Devanathan</dc:creator>
    <dc:date>2003-05-01T12:36:30Z</dc:date>
    <item>
      <title>Help with TERM command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963566#M814579</link>
      <description>I am trying to decipher a script written by somebody else and am having problems with one particular line:&lt;BR /&gt;&lt;BR /&gt;TERM="$TERM=$command" exec rlogin "$host" -l "$user"&lt;BR /&gt;&lt;BR /&gt;This line works, for example I can perform top on server hostb with &lt;BR /&gt;&lt;BR /&gt;TERM=wyse60=top exec rlogin hostb -l usera&lt;BR /&gt;&lt;BR /&gt;My question is can anybody explain how/why this command works? I ha ve looked at the man page for TERM and this doesn't really help.</description>
      <pubDate>Thu, 01 May 2003 12:22:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963566#M814579</guid>
      <dc:creator>Mark Lawley</dc:creator>
      <dc:date>2003-05-01T12:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help with TERM command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963567#M814580</link>
      <description>Can't comment right now. require the full script :)&lt;BR /&gt;&lt;BR /&gt;could you attach it if it is long or paste it if it is not?&lt;BR /&gt;&lt;BR /&gt;- ramd.</description>
      <pubDate>Thu, 01 May 2003 12:36:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963567#M814580</guid>
      <dc:creator>Ramkumar Devanathan</dc:creator>
      <dc:date>2003-05-01T12:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help with TERM command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963568#M814581</link>
      <description>Hi Mark:&lt;BR /&gt;&lt;BR /&gt;The appropriate value for 'TERM' is usually derived during the login process.  If you examine '/etc/profile' for instance, you will see that the value is selected based on a dialog with the terminal device with 'ttytype'.&lt;BR /&gt;&lt;BR /&gt;The concept of the 'terminfo(4) database is to define sequences of characters necessary to elicit a particular behavior for a particular terminal type.  For example, the sequence of characters necessary to enable text highlighting may differ for a 'vt100' terminal versus a 'wyse' one.  In lieu of an application having to define every sequence of control to do simple text enhancements, for instance, the application can leverage 'tput' in order to present the appropriate controls to the particular device to affect the intended function.&lt;BR /&gt;&lt;BR /&gt;Have a futher look at the man pages for 'terminfo(4), 'tput(1), and 'ttytype(1)'.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 01 May 2003 12:37:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963568#M814581</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-05-01T12:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help with TERM command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963569#M814582</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;The commad is taking the TERM that you specified and using it on the server you are rlogin to.&lt;BR /&gt;&lt;BR /&gt;It saves doing :-&lt;BR /&gt;&lt;BR /&gt;rlogin hostb&lt;BR /&gt;TERM=wyse60&lt;BR /&gt;usera&lt;BR /&gt;top&lt;BR /&gt;&lt;BR /&gt;The Line&lt;BR /&gt;&lt;BR /&gt;TERM="$TERM=$command" exec rlogin "$host" -l "$user"&lt;BR /&gt;&lt;BR /&gt;Is asking for the four variables and taking then into the command structure it is all encompassed in one.&lt;BR /&gt;&lt;BR /&gt;Paula&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 01 May 2003 12:38:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963569#M814582</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2003-05-01T12:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help with TERM command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963570#M814583</link>
      <description>Paula and JRF,&lt;BR /&gt;&lt;BR /&gt;I don't really understand the TERM="$TERM=$command" part.&lt;BR /&gt;&lt;BR /&gt;# TERM="wyse60=top" exec rlogin &lt;HOSTNAME&gt; -l &lt;USER&gt;&lt;BR /&gt;&lt;BR /&gt;when i try the above command with proper hostname and user, i get the following after i login -&lt;BR /&gt;&lt;BR /&gt;Type wyse=top unknown.&lt;BR /&gt;&lt;BR /&gt;I believe TERM="$TERM=$command" is a typo.&lt;BR /&gt;&lt;BR /&gt;Mark that's why i thought it'd be useful if you'd paste out/attach the script.&lt;BR /&gt;&lt;BR /&gt;- ramd.&lt;/USER&gt;&lt;/HOSTNAME&gt;</description>
      <pubDate>Thu, 01 May 2003 12:52:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963570#M814583</guid>
      <dc:creator>Ramkumar Devanathan</dc:creator>
      <dc:date>2003-05-01T12:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help with TERM command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963571#M814584</link>
      <description>Mark&lt;BR /&gt;&lt;BR /&gt;Can you please post the full script.&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Fri, 02 May 2003 08:40:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-with-term-command/m-p/2963571#M814584</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2003-05-02T08:40:15Z</dc:date>
    </item>
  </channel>
</rss>

