<?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: missing conjunction in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376316#M863879</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Put the strings specified with -name option in quotes so that shell will not try to expand them before find executes.&lt;BR /&gt;&lt;BR /&gt;#find /var/adm/sa* ! -name '*.gz' -a -name 'ex*' |xargs /usr/contrib/bin/gzip&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
    <pubDate>Fri, 10 Sep 2004 02:46:02 GMT</pubDate>
    <dc:creator>Sridhar Bhaskarla</dc:creator>
    <dc:date>2004-09-10T02:46:02Z</dc:date>
    <item>
      <title>find: missing conjunction</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376314#M863877</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;Use root to run cron job:&lt;BR /&gt;# find /var/adm/sa/* ! -name *gz -a -name ex* -exec /usr/contrib/bin/gzip {} \;&lt;BR /&gt;&lt;BR /&gt;Sometimes, it performed successfully; sometimes, it returned:&lt;BR /&gt;find: missing conjunction&lt;BR /&gt;&lt;BR /&gt;Is it related to system loading or any problem? Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 10 Sep 2004 02:12:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376314#M863877</guid>
      <dc:creator>ikbea</dc:creator>
      <dc:date>2004-09-10T02:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: find: missing conjunction</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376315#M863878</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Put the strings specified with -name option in quotes so that shell will not try to expand them before find executes.&lt;BR /&gt;&lt;BR /&gt;#find /var/adm/sa* ! -name '*.gz' -a -name 'ex*' ......&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Fri, 10 Sep 2004 02:24:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376315#M863878</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-09-10T02:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: find: missing conjunction</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376316#M863879</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Put the strings specified with -name option in quotes so that shell will not try to expand them before find executes.&lt;BR /&gt;&lt;BR /&gt;#find /var/adm/sa* ! -name '*.gz' -a -name 'ex*' |xargs /usr/contrib/bin/gzip&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Fri, 10 Sep 2004 02:46:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376316#M863879</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-09-10T02:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: find: missing conjunction</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376317#M863880</link>
      <description>Thanks. It works without error again after quoted with ' or " in shell prompt.&lt;BR /&gt;I will try to run in cron job later to test.&lt;BR /&gt;&lt;BR /&gt;Also related link&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x958f8cc5e03fd6118fff0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x958f8cc5e03fd6118fff0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 10 Sep 2004 03:06:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376317#M863880</guid>
      <dc:creator>ikbea</dc:creator>
      <dc:date>2004-09-10T03:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: find: missing conjunction</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376318#M863881</link>
      <description>When ever you try commands with * ( wild card character's ) on shell try to delimit it with \ character there.&lt;BR /&gt;&lt;BR /&gt;So use as,&lt;BR /&gt;&lt;BR /&gt;find /var/adm/sa/ ! -name \*gz -a -name ex* -exec /usr/contrib/bin/gzip {} \;&lt;BR /&gt;&lt;BR /&gt;Where --&amp;gt;&lt;BR /&gt;/var/adm/sa/*  is same as /var/adm/sa/ or /var/adm/sa directories there.&lt;BR /&gt;&lt;BR /&gt;Or you can delimit the character's with quotes there  as,&lt;BR /&gt;&lt;BR /&gt;find /var/adm/sa/ ! -name "*gz" -a -name "ex*" -exec /usr/contrib/bin/gzip {} \;&lt;BR /&gt;&lt;BR /&gt;-Muthu</description>
      <pubDate>Fri, 10 Sep 2004 03:59:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-missing-conjunction/m-p/3376318#M863881</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-09-10T03:59:55Z</dc:date>
    </item>
  </channel>
</rss>

