<?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 find command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882542#M849593</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;How do I use find command in the following situation:&lt;BR /&gt;&lt;BR /&gt;- I want to search anything under /home/user expect /home/user/guest directory&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
    <pubDate>Thu, 27 Jan 2005 13:40:24 GMT</pubDate>
    <dc:creator>Ridzuan Zakaria</dc:creator>
    <dc:date>2005-01-27T13:40:24Z</dc:date>
    <item>
      <title>find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882542#M849593</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;How do I use find command in the following situation:&lt;BR /&gt;&lt;BR /&gt;- I want to search anything under /home/user expect /home/user/guest directory&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Thu, 27 Jan 2005 13:40:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882542#M849593</guid>
      <dc:creator>Ridzuan Zakaria</dc:creator>
      <dc:date>2005-01-27T13:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882543#M849594</link>
      <description>If you simply don't want to see any output from the /home/user/guest directory you can grep it out:&lt;BR /&gt;&lt;BR /&gt;find /home/user |grep -v '/home/user/guest'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 27 Jan 2005 13:42:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882543#M849594</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-01-27T13:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882544#M849595</link>
      <description>find /home/user ! -path "/home/user/guest"&lt;BR /&gt; &lt;BR /&gt;HTH&lt;BR /&gt; &lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Thu, 27 Jan 2005 13:54:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882544#M849595</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2005-01-27T13:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882545#M849596</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;you can also use the -prune option with the find command,&lt;BR /&gt;&lt;BR /&gt;find /home/user -type f ! -path "/home/user/guest/*" -prune -print&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Jan 2005 13:59:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882545#M849596</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2005-01-27T13:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882546#M849597</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you want to include all files / directories, you can also use,&lt;BR /&gt;&lt;BR /&gt;find /home/user ! -path "/home/user/guest/*" -print&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;regds&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Jan 2005 14:01:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882546#M849597</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2005-01-27T14:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882547#M849598</link>
      <description>I use Sanjay's suggestion.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Thu, 27 Jan 2005 14:09:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882547#M849598</guid>
      <dc:creator>Ridzuan Zakaria</dc:creator>
      <dc:date>2005-01-27T14:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882548#M849599</link>
      <description>I use Sanjay's suggestion</description>
      <pubDate>Thu, 27 Jan 2005 14:10:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/4882548#M849599</guid>
      <dc:creator>Ridzuan Zakaria</dc:creator>
      <dc:date>2005-01-27T14:10:15Z</dc:date>
    </item>
  </channel>
</rss>

