<?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 files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399598#M200512</link>
    <description>I use grep:&lt;BR /&gt;find . | grep -i test.txt&lt;BR /&gt;&lt;BR /&gt;Mike D'.</description>
    <pubDate>Mon, 18 Oct 2004 17:07:19 GMT</pubDate>
    <dc:creator>Michael D'Aulerio</dc:creator>
    <dc:date>2004-10-18T17:07:19Z</dc:date>
    <item>
      <title>find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399593#M200507</link>
      <description>Does anyone knows how to find files as below? Which options can be apply in find ? Thanks.&lt;BR /&gt;&lt;BR /&gt;#find . -name test.txt&lt;BR /&gt;&lt;BR /&gt;It can be found "test.txt" or "TEST.txt" or "TEST.TXT" or "test.TXT" &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Oct 2004 20:08:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399593#M200507</guid>
      <dc:creator>j773303</dc:creator>
      <dc:date>2004-10-13T20:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399594#M200508</link>
      <description>Use the find -o (or operator)&lt;BR /&gt;&lt;BR /&gt;find . -name \( -name 'test.txt' -o -name 'TEST.txt' -o -name 'test.TXT' \)&lt;BR /&gt;&lt;BR /&gt;Plan B. Find everything and then use a case insensitive grep as a filter:&lt;BR /&gt;&lt;BR /&gt;find . -type f -print | grep -i 'test.txt'</description>
      <pubDate>Wed, 13 Oct 2004 20:18:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399594#M200508</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-10-13T20:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399595#M200509</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;One 'confusing' way is to use expression like this&lt;BR /&gt;&lt;BR /&gt;find . -name \[Tt\]\[Ee\]\[sS\]\[tT\]\.\[tT\]\[xX\]\[tT\]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 13 Oct 2004 20:22:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399595#M200509</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-10-13T20:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399596#M200510</link>
      <description>&lt;BR /&gt;I know you can do wildcards ("*" or "?") but I do not think you can do case sensitivity.&lt;BR /&gt;&lt;BR /&gt;Of course you can do 'or conditions', but that's tedious...&lt;BR /&gt;&lt;BR /&gt;find . -name test.txt -o -name TEST.txt -o -name TEST.TXT -o -name test.TXT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Oct 2004 20:31:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399596#M200510</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-10-13T20:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399597#M200511</link>
      <description>The expression given by me works for me.&lt;BR /&gt;&lt;BR /&gt;The '-o' option is an easy way for file names of shorter length. However, as the number of letters in the filename increase, the combinations will increase and it can become unmanageable. [] notation may confuse a little bit but it doesn't really increase your command line.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 13 Oct 2004 20:42:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399597#M200511</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-10-13T20:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399598#M200512</link>
      <description>I use grep:&lt;BR /&gt;find . | grep -i test.txt&lt;BR /&gt;&lt;BR /&gt;Mike D'.</description>
      <pubDate>Mon, 18 Oct 2004 17:07:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399598#M200512</guid>
      <dc:creator>Michael D'Aulerio</dc:creator>
      <dc:date>2004-10-18T17:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399599#M200513</link>
      <description>You could get the gnu find from HP porting and archive site. It has an option "-iname" that does case insensitive matches.&lt;BR /&gt; &lt;BR /&gt;HTH&lt;BR /&gt; &lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Mon, 18 Oct 2004 17:16:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399599#M200513</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2004-10-18T17:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: find files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399600#M200514</link>
      <description># find . | fgrep -i -w test.txt&lt;BR /&gt;&lt;BR /&gt;# perl -MFile::Find -le'find(sub{lc$_ eq"test.txt"and print$File::Find::name},".")'&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Oct 2004 17:41:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-files/m-p/3399600#M200514</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2004-10-18T17:41:32Z</dc:date>
    </item>
  </channel>
</rss>

