<?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 files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536916#M899736</link>
    <description>I would like to find all files which has content of "Hello" word inside the file.</description>
    <pubDate>Wed, 06 Jun 2001 05:45:36 GMT</pubDate>
    <dc:creator>Kenn Chen</dc:creator>
    <dc:date>2001-06-06T05:45:36Z</dc:date>
    <item>
      <title>Find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536916#M899736</link>
      <description>I would like to find all files which has content of "Hello" word inside the file.</description>
      <pubDate>Wed, 06 Jun 2001 05:45:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536916#M899736</guid>
      <dc:creator>Kenn Chen</dc:creator>
      <dc:date>2001-06-06T05:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536917#M899737</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Try &lt;BR /&gt;&lt;BR /&gt;find / -exec file {} \; | grep text | grep Hello&lt;BR /&gt;&lt;BR /&gt;But should remember that command file not always clasify well files.&lt;BR /&gt;&lt;BR /&gt;Rgds.</description>
      <pubDate>Wed, 06 Jun 2001 05:57:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536917#M899737</guid>
      <dc:creator>Wieslaw Krajewski</dc:creator>
      <dc:date>2001-06-06T05:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536918#M899738</link>
      <description>find / -type f | xargs grep -l Hello&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Jun 2001 06:45:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536918#M899738</guid>
      <dc:creator>Laurent Paumier</dc:creator>
      <dc:date>2001-06-06T06:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536919#M899739</link>
      <description>The best solution could be:&lt;BR /&gt;find DIR -type f -exec grep -il "Hello" {} \;</description>
      <pubDate>Wed, 06 Jun 2001 07:14:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536919#M899739</guid>
      <dc:creator>federico_3</dc:creator>
      <dc:date>2001-06-06T07:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536920#M899740</link>
      <description>Hi federico,&lt;BR /&gt;&lt;BR /&gt;Your command will exec a grep process for every file found.  Whenever you can, use the xargs command which will exec the specified process passing it many files at once.  One grep in 10000 files is by far more efficient than 10000 greps in one file...&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Jun 2001 08:06:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/2536920#M899740</guid>
      <dc:creator>Laurent Paumier</dc:creator>
      <dc:date>2001-06-06T08:06:21Z</dc:date>
    </item>
  </channel>
</rss>

