<?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: Nonrecursive find. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001619#M126567</link>
    <description>Hi all.  You really came together and figured this one out for me.  It works great and has solved one of my sys. admin. problems.  Thanks so much for your help.&lt;BR /&gt;&lt;BR /&gt;Matt</description>
    <pubDate>Thu, 19 Jun 2003 15:40:15 GMT</pubDate>
    <dc:creator>Matt Williamson</dc:creator>
    <dc:date>2003-06-19T15:40:15Z</dc:date>
    <item>
      <title>Nonrecursive find.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001613#M126561</link>
      <description>Is there a way to do a nonrecursive find?  I'm using find to clean out a tmp directory that contains subdirectories I don't want cleaned out.  Is there a way to tell find not to descend the hierarchy and only find files in the base directory given on the command line?</description>
      <pubDate>Wed, 18 Jun 2003 22:33:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001613#M126561</guid>
      <dc:creator>Matt Williamson</dc:creator>
      <dc:date>2003-06-18T22:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Nonrecursive find.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001614#M126562</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You could use 'll /directory |grep -v "^d""&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 18 Jun 2003 22:55:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001614#M126562</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2003-06-18T22:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Nonrecursive find.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001615#M126563</link>
      <description>Hi Matt,&lt;BR /&gt;&lt;BR /&gt;Use the following param:&lt;BR /&gt;&lt;BR /&gt;! -type d&lt;BR /&gt;&lt;BR /&gt;to avoid traversing dirs.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Wed, 18 Jun 2003 23:01:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001615#M126563</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2003-06-18T23:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Nonrecursive find.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001616#M126564</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;find ./* ./.* -prune&lt;BR /&gt;or&lt;BR /&gt;find /fullpath/* /fullpath/.* -prune&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jan</description>
      <pubDate>Thu, 19 Jun 2003 08:24:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001616#M126564</guid>
      <dc:creator>Jan Zalman</dc:creator>
      <dc:date>2003-06-19T08:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: Nonrecursive find.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001617#M126565</link>
      <description>&lt;BR /&gt;Oops! I typed mistake, it should be&lt;BR /&gt;find /tmp/* /tmp/.* -prune ! -type d&lt;BR /&gt;Sorry. &lt;BR /&gt;Jan</description>
      <pubDate>Thu, 19 Jun 2003 08:52:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001617#M126565</guid>
      <dc:creator>Jan Zalman</dc:creator>
      <dc:date>2003-06-19T08:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Nonrecursive find.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001618#M126566</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I've tested ...&lt;BR /&gt;&lt;BR /&gt;find /tmp/* /tmp/.* -prune ! -type d&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Thu, 19 Jun 2003 09:07:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001618#M126566</guid>
      <dc:creator>Jean-Louis Phelix</dc:creator>
      <dc:date>2003-06-19T09:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Nonrecursive find.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001619#M126567</link>
      <description>Hi all.  You really came together and figured this one out for me.  It works great and has solved one of my sys. admin. problems.  Thanks so much for your help.&lt;BR /&gt;&lt;BR /&gt;Matt</description>
      <pubDate>Thu, 19 Jun 2003 15:40:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nonrecursive-find/m-p/3001619#M126567</guid>
      <dc:creator>Matt Williamson</dc:creator>
      <dc:date>2003-06-19T15:40:15Z</dc:date>
    </item>
  </channel>
</rss>

