<?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: find command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647720#M45324</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;ls -l | grep -v "*.gz" | more&lt;BR /&gt;&lt;BR /&gt;Should do it.&lt;BR /&gt;&lt;BR /&gt;Paula</description>
    <pubDate>Thu, 17 Jan 2002 19:52:18 GMT</pubDate>
    <dc:creator>Paula J Frazer-Campbell</dc:creator>
    <dc:date>2002-01-17T19:52:18Z</dc:date>
    <item>
      <title>find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647719#M45323</link>
      <description>Hi guys,&lt;BR /&gt;&lt;BR /&gt;how do I use the find command to find everything in a directory not containing a *.gz file. Any help will be greatly appreciated.</description>
      <pubDate>Thu, 17 Jan 2002 19:48:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647719#M45323</guid>
      <dc:creator>Ragni Singh</dc:creator>
      <dc:date>2002-01-17T19:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647720#M45324</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;ls -l | grep -v "*.gz" | more&lt;BR /&gt;&lt;BR /&gt;Should do it.&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Thu, 17 Jan 2002 19:52:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647720#M45324</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2002-01-17T19:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647721#M45325</link>
      <description>that's easy...cd to the directory in question and...&lt;BR /&gt;&lt;BR /&gt;$ find . ! -name "*.gz"</description>
      <pubDate>Thu, 17 Jan 2002 19:53:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647721#M45325</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2002-01-17T19:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647722#M45326</link>
      <description>I need to run the find command to do this from the root directory on down. ls -l will just work on one dir. Thanks for your time.</description>
      <pubDate>Thu, 17 Jan 2002 19:53:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647722#M45326</guid>
      <dc:creator>Ragni Singh</dc:creator>
      <dc:date>2002-01-17T19:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647723#M45327</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;ls -lR | grep -v "*.gz | more&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;will work for all dirs from root.&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Thu, 17 Jan 2002 19:55:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647723#M45327</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2002-01-17T19:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647724#M45328</link>
      <description>Hi&lt;BR /&gt;Ooops miss the second quote :-&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ls -lR | grep -v "*.gz" | more&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;will work for all dirs from root.&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Thu, 17 Jan 2002 19:56:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647724#M45328</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2002-01-17T19:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647725#M45329</link>
      <description>Try this:&lt;BR /&gt;&lt;BR /&gt;# find . \! -name *.gz -exec ls {} \;&lt;BR /&gt;&lt;BR /&gt;just substute any other type of output command other than ls (lp,etc) for your results&lt;BR /&gt;Hope this helps&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Thu, 17 Jan 2002 19:57:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647725#M45329</guid>
      <dc:creator>Christopher McCray_1</dc:creator>
      <dc:date>2002-01-17T19:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647726#M45330</link>
      <description>find / ! -name "*.gz"&lt;BR /&gt;&lt;BR /&gt;you can then use -exec to take action on what it finds..or | xargs rm &lt;BR /&gt;find / ! -name "*.gz" -exec rm {} \;</description>
      <pubDate>Thu, 17 Jan 2002 19:57:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2647726#M45330</guid>
      <dc:creator>Kevin Wright</dc:creator>
      <dc:date>2002-01-17T19:57:44Z</dc:date>
    </item>
  </channel>
</rss>

