<?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/2430565#M2857</link>
    <description>Hi,&lt;BR /&gt;Have you tried:&lt;BR /&gt;find . -name PIPO -o -name pipo -o -name Pipo...&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Victor</description>
    <pubDate>Thu, 13 Jul 2000 09:49:32 GMT</pubDate>
    <dc:creator>Victor BERRIDGE</dc:creator>
    <dc:date>2000-07-13T09:49:32Z</dc:date>
    <item>
      <title>find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430563#M2855</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I want to find a file called Pipo or pipo in the a directory. I don't know if it is in a uppercase or a lowercase or mix of it.&lt;BR /&gt;&lt;BR /&gt;Which option do I have to use with the command find ? Or is there a other solution?&lt;BR /&gt;&lt;BR /&gt;Marcel&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jul 2000 09:42:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430563#M2855</guid>
      <dc:creator>Marcel Boon</dc:creator>
      <dc:date>2000-07-13T09:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430564#M2856</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;two solutions:&lt;BR /&gt;&lt;BR /&gt;find . -name '[Pp][Ii][Pp][Oo]' -print&lt;BR /&gt;&lt;BR /&gt;OR&lt;BR /&gt;&lt;BR /&gt;find . | awk '{if(tolower($0)=="pipo")print $0}'&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Andrew</description>
      <pubDate>Thu, 13 Jul 2000 09:45:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430564#M2856</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2000-07-13T09:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430565#M2857</link>
      <description>Hi,&lt;BR /&gt;Have you tried:&lt;BR /&gt;find . -name PIPO -o -name pipo -o -name Pipo...&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Victor</description>
      <pubDate>Thu, 13 Jul 2000 09:49:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430565#M2857</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2000-07-13T09:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430566#M2858</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thank you for your responce, but the file Pipo or pipo is a example-name for a file. I have a lot of filenames with upper or lowercases.&lt;BR /&gt;So, I want use the command in a script to search in directory's.&lt;BR /&gt;&lt;BR /&gt;Marcel&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jul 2000 10:03:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430566#M2858</guid>
      <dc:creator>Marcel Boon</dc:creator>
      <dc:date>2000-07-13T10:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430567#M2859</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;still more simply:&lt;BR /&gt;find . |grep -i pipo</description>
      <pubDate>Thu, 13 Jul 2000 10:07:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430567#M2859</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2000-07-13T10:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430568#M2860</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;for multiple names:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;find . |egrep -i '(pipo|papa|hello|whatever)'&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jul 2000 10:07:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430568#M2860</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2000-07-13T10:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430569#M2861</link>
      <description>Uhhh....&lt;BR /&gt;&lt;BR /&gt;I'm thought to different, I used the -exec command-option , that was not right.&lt;BR /&gt;&lt;BR /&gt;Now I have asked a really stupid question .&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jul 2000 10:22:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430569#M2861</guid>
      <dc:creator>Marcel Boon</dc:creator>
      <dc:date>2000-07-13T10:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430570#M2862</link>
      <description>find is very system intensive if you want to search based just on filename.  du is much faster and easier on resources.  Use:&lt;BR /&gt;&lt;BR /&gt;du -a [directory] | grep -i [filename]$&lt;BR /&gt;&lt;BR /&gt;The $ is required only if you want to eliminate directories of the same name from your list.</description>
      <pubDate>Thu, 13 Jul 2000 13:27:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430570#M2862</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-07-13T13:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430571#M2863</link>
      <description>Try this and see if it works for you:&lt;BR /&gt;&lt;BR /&gt; find * | tr [A-Z] [a-z] | grep your_file_name&lt;BR /&gt;&lt;BR /&gt;After see them in lower case, go to that dir and look for it.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2000 12:21:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/2430571#M2863</guid>
      <dc:creator>Felix J. Liu</dc:creator>
      <dc:date>2000-07-17T12:21:16Z</dc:date>
    </item>
  </channel>
</rss>

