<?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: X-term pop up in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990115#M923876</link>
    <description>Hello,&lt;BR /&gt;currently no X available, but I try it anyway (not validated ) ...&lt;BR /&gt;&lt;BR /&gt;xterm -title $DISPLAY -exec 'echo Display: $DISPLAY ; /bin/sh'&lt;BR /&gt;&lt;BR /&gt;Volker</description>
    <pubDate>Thu, 05 Jun 2003 19:01:14 GMT</pubDate>
    <dc:creator>Volker Borowski</dc:creator>
    <dc:date>2003-06-05T19:01:14Z</dc:date>
    <item>
      <title>X-term pop up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990112#M923873</link>
      <description>All, surely this is easy enough but cant seem to work it out in the man page. I simply want to at startup through my .dtprofile generate a pop up xterm with my IP address within it. (dont ask me why) Anyway I can run xterm -exec (command string) however this works but the command runs and the window closes how can I get it to stay there.</description>
      <pubDate>Thu, 05 Jun 2003 14:30:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990112#M923873</guid>
      <dc:creator>Adam Noble</dc:creator>
      <dc:date>2003-06-05T14:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: X-term pop up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990113#M923874</link>
      <description>an idea as I haven't got time to test this p.m ...&lt;BR /&gt;&lt;BR /&gt;add the command to $HOME/.dt/sessions/sessionetc&lt;BR /&gt;&lt;BR /&gt;you may need to create the file, make it executable , log out of cde then back in ... does this work ?&lt;BR /&gt;&lt;BR /&gt;ps post the syntax of the exec here I'll have a play tomorrow .... is it in ""'s ?</description>
      <pubDate>Thu, 05 Jun 2003 14:37:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990113#M923874</guid>
      <dc:creator>Alex Glennie</dc:creator>
      <dc:date>2003-06-05T14:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: X-term pop up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990114#M923875</link>
      <description>Well all I want to do is show my display variable so I was just going to run:-&lt;BR /&gt;&lt;BR /&gt;xterm -exec "env | grep -i disp"</description>
      <pubDate>Thu, 05 Jun 2003 14:54:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990114#M923875</guid>
      <dc:creator>Adam Noble</dc:creator>
      <dc:date>2003-06-05T14:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: X-term pop up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990115#M923876</link>
      <description>Hello,&lt;BR /&gt;currently no X available, but I try it anyway (not validated ) ...&lt;BR /&gt;&lt;BR /&gt;xterm -title $DISPLAY -exec 'echo Display: $DISPLAY ; /bin/sh'&lt;BR /&gt;&lt;BR /&gt;Volker</description>
      <pubDate>Thu, 05 Jun 2003 19:01:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990115#M923876</guid>
      <dc:creator>Volker Borowski</dc:creator>
      <dc:date>2003-06-05T19:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: X-term pop up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990116#M923877</link>
      <description>Hi Adam,&lt;BR /&gt;&lt;BR /&gt;xterm -e /bin/sh -c "echo $DISPLAY;sleep 10000000" &amp;amp;&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;xterm -e /bin/sh -c "echo $DISPLAY;while :;do^Jsleep 1^Jdone" &amp;amp;&lt;BR /&gt;&lt;BR /&gt;should do it.&lt;BR /&gt;&lt;BR /&gt;rgds, Robin</description>
      <pubDate>Fri, 06 Jun 2003 06:28:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990116#M923877</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2003-06-06T06:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: X-term pop up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990117#M923878</link>
      <description>Hi,&lt;BR /&gt;my guess:&lt;BR /&gt;&lt;BR /&gt;IP=$( grep 'hostname' /etc/hosts | awk '{ print $1 }' )&lt;BR /&gt;&lt;BR /&gt;nohup xterm -e /bin/sh -c "banner $IP; read a" &amp;amp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and it will stay there untill you pres enter !&lt;BR /&gt;&lt;BR /&gt;  Massimo&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Fri, 06 Jun 2003 06:55:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990117#M923878</guid>
      <dc:creator>Massimo Bianchi</dc:creator>
      <dc:date>2003-06-06T06:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: X-term pop up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990118#M923879</link>
      <description>Change your prompt at .profile level.&lt;BR /&gt;&lt;BR /&gt;Somthing like &lt;BR /&gt;&lt;BR /&gt;PS1=$DISPLAY"&amp;gt; "&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Jun 2003 11:41:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-term-pop-up/m-p/2990118#M923879</guid>
      <dc:creator>Jos Francois</dc:creator>
      <dc:date>2003-06-06T11:41:29Z</dc:date>
    </item>
  </channel>
</rss>

