<?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: about find in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744597#M68646</link>
    <description>cd /home/abc&lt;BR /&gt;&lt;BR /&gt;echo abc*&lt;BR /&gt;&lt;BR /&gt;You must find any file beginnig whit -.&lt;BR /&gt;&lt;BR /&gt;The correct use for * in find is quoted.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;find . -name "abc*" .....</description>
    <pubDate>Fri, 14 Jun 2002 07:37:18 GMT</pubDate>
    <dc:creator>Carlos Fernandez Riera</dc:creator>
    <dc:date>2002-06-14T07:37:18Z</dc:date>
    <item>
      <title>about find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744590#M68639</link>
      <description>hi expert,&lt;BR /&gt; when i use the command "find" ,1, as "root", i type "find / -name abc* -print" and return the correct information,but when i goto a directory such as "/home/abc" and type "find . -name abc* -print ",the system give me a message "find: missing conjunction".&lt;BR /&gt;2,i su to username "abc",and type "find . -name abc* -print",it also tell me "find : missing conjunction".&lt;BR /&gt;and if i type the command as "find . -name 'abc*' -print", either root or user abc can recieve the correct information.&lt;BR /&gt;why??&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Jun 2002 05:11:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744590#M68639</guid>
      <dc:creator>wangxi</dc:creator>
      <dc:date>2002-06-14T05:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: about find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744591#M68640</link>
      <description>&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Check if you get the same error-message&lt;BR /&gt;if you  use the whole path for the&lt;BR /&gt;find command:&lt;BR /&gt;&lt;BR /&gt; /usr/bin/find  ......&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Olav</description>
      <pubDate>Fri, 14 Jun 2002 05:20:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744591#M68640</guid>
      <dc:creator>Olav Baadsvik</dc:creator>
      <dc:date>2002-06-14T05:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: about find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744592#M68641</link>
      <description>the error message is the same when i use the full path</description>
      <pubDate>Fri, 14 Jun 2002 05:27:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744592#M68641</guid>
      <dc:creator>wangxi</dc:creator>
      <dc:date>2002-06-14T05:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: about find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744593#M68642</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;abc* is expanded by the shell interpreter (your running shell) to the list of matching filenames in the existing directory.&lt;BR /&gt;&lt;BR /&gt;Because -name only accepts only a single parameter, when abc* expands to multiple matching filenames, find returns a missing conjunction error because there are more than one parameter to -name.&lt;BR /&gt;&lt;BR /&gt;The single quotes prevents abc* from being interpreted by the shell interpreter (your running shell).&lt;BR /&gt;&lt;BR /&gt;find works in / without the single quotes because there are no matches for abc* in /.&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Fri, 14 Jun 2002 05:27:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744593#M68642</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-14T05:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: about find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744594#M68643</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Alternatively to using single quotes, you can use the following to disable file-globbing (i.e. not interpreting * in the shell):&lt;BR /&gt;&lt;BR /&gt;# set -f&lt;BR /&gt;# cd /home/abc&lt;BR /&gt;# find . -name abc* -print&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Fri, 14 Jun 2002 05:31:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744594#M68643</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-14T05:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: about find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744595#M68644</link>
      <description>&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;&lt;BR /&gt;  find . -name abc\*  -print&lt;BR /&gt;&lt;BR /&gt;Olav</description>
      <pubDate>Fri, 14 Jun 2002 05:33:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744595#M68644</guid>
      <dc:creator>Olav Baadsvik</dc:creator>
      <dc:date>2002-06-14T05:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: about find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744596#M68645</link>
      <description>As * is a special shell character.&lt;BR /&gt;It is better to use \ or single quote or double quote.&lt;BR /&gt;&lt;BR /&gt;When you give it is abc* the shell misinterprets as multiply or something.&lt;BR /&gt;If you use quotes the shell iinterprets as one or more characters following abc.&lt;BR /&gt;&lt;BR /&gt;you can use&lt;BR /&gt;&lt;BR /&gt;find ./ -name abc\*&lt;BR /&gt;find ./ -name 'abc*'&lt;BR /&gt;find ./ -name "abc*"&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 14 Jun 2002 05:38:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744596#M68645</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-06-14T05:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: about find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744597#M68646</link>
      <description>cd /home/abc&lt;BR /&gt;&lt;BR /&gt;echo abc*&lt;BR /&gt;&lt;BR /&gt;You must find any file beginnig whit -.&lt;BR /&gt;&lt;BR /&gt;The correct use for * in find is quoted.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;find . -name "abc*" .....</description>
      <pubDate>Fri, 14 Jun 2002 07:37:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-find/m-p/2744597#M68646</guid>
      <dc:creator>Carlos Fernandez Riera</dc:creator>
      <dc:date>2002-06-14T07:37:18Z</dc:date>
    </item>
  </channel>
</rss>

