<?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: xhost + in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002034#M297375</link>
    <description>Thanks a lot!</description>
    <pubDate>Thu, 17 May 2007 16:04:16 GMT</pubDate>
    <dc:creator>Sanjiv Sharma_1</dc:creator>
    <dc:date>2007-05-17T16:04:16Z</dc:date>
    <item>
      <title>xhost +</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002027#M297368</link>
      <description>Using "find" or some other command I wish to search for all instances of the “xhost +” command from the system-wide&lt;BR /&gt;Xsession file, from user Xsession files, and from any application programs or&lt;BR /&gt;shell scripts that use the X window system. How can I achieve this? Looking for exact command/syntax.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.</description>
      <pubDate>Thu, 17 May 2007 09:18:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002027#M297368</guid>
      <dc:creator>Sanjiv Sharma_1</dc:creator>
      <dc:date>2007-05-17T09:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: xhost +</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002028#M297369</link>
      <description>for i in `find /home -type f -exec ls {} \;`&lt;BR /&gt;do&lt;BR /&gt; grep "xhost +" $i &amp;amp;&amp;amp; echo $i&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Thu, 17 May 2007 09:30:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002028#M297369</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-05-17T09:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: xhost +</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002029#M297370</link>
      <description>The "exact command/syntax" depends on the&lt;BR /&gt;exact requirements.  For example, how many&lt;BR /&gt;spaces between "xhost" and "+"?  Exactly&lt;BR /&gt;which files do you wish to search?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] any application programs [...]&lt;BR /&gt;&lt;BR /&gt;Good luck.  I'm sure that I could write one&lt;BR /&gt;which you'd never find.</description>
      <pubDate>Thu, 17 May 2007 09:48:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002029#M297370</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-05-17T09:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: xhost +</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002030#M297371</link>
      <description>Here's a starting point:&lt;BR /&gt;&lt;BR /&gt;$ find / -name 'Xsession' -o -name '*.sh' -print | xargs grep -l -E 'xhost\ +\+'&lt;BR /&gt;&lt;BR /&gt;PCS</description>
      <pubDate>Thu, 17 May 2007 10:04:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002030#M297371</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2007-05-17T10:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: xhost +</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002031#M297372</link>
      <description>This command gives me a message:&lt;BR /&gt;&lt;BR /&gt;# find / -name 'Xsession' -o -name '*.sh' -print | xargs grep -l -E 'xhost\ +\+'&lt;BR /&gt;grep: can't open /opt/VRTS/bin/vxsvcctrl.sh&lt;BR /&gt;&lt;BR /&gt;/opt/VRTS/bin/vxsvcctrl.sh is a link to a file which doesn't exist. Is there anyway I can ignore the check on this file?&lt;BR /&gt;</description>
      <pubDate>Thu, 17 May 2007 15:33:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002031#M297372</guid>
      <dc:creator>Sanjiv Sharma_1</dc:creator>
      <dc:date>2007-05-17T15:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: xhost +</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002032#M297373</link>
      <description>Negate all symbolic links by providing the "! -type l" command line switch to find(1):&lt;BR /&gt;&lt;BR /&gt;# find / -name 'Xsession' -o -name '*.sh' ! -type l | xargs grep -l -E 'xhost\ +\+'&lt;BR /&gt;</description>
      <pubDate>Thu, 17 May 2007 15:37:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002032#M297373</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2007-05-17T15:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: xhost +</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002033#M297374</link>
      <description>On second thoughts search only regular files and avoid all device files, fifos, sockets and links by using...&lt;BR /&gt;&lt;BR /&gt;# find / -name 'Xsession' -o -name '*.sh' -type f | xargs egrep -l 'xhost +\+'</description>
      <pubDate>Thu, 17 May 2007 15:46:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002033#M297374</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2007-05-17T15:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: xhost +</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002034#M297375</link>
      <description>Thanks a lot!</description>
      <pubDate>Thu, 17 May 2007 16:04:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xhost/m-p/4002034#M297375</guid>
      <dc:creator>Sanjiv Sharma_1</dc:creator>
      <dc:date>2007-05-17T16:04:16Z</dc:date>
    </item>
  </channel>
</rss>

