<?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: crontab entries in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666762#M931732</link>
    <description>crontab -l |&lt;BR /&gt;grep "^[0-9][0-9]* [0-9][0-9]* [0-9][0-9]* [0-9][0-9]* " &lt;BR /&gt;&lt;BR /&gt;or even shorter:&lt;BR /&gt;&lt;BR /&gt;crontab -l |&lt;BR /&gt;egep "^[0-9]+ [0-9]+ [0-9]+ [-0]+ "&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Wodisch</description>
    <pubDate>Mon, 18 Feb 2002 18:57:18 GMT</pubDate>
    <dc:creator>Wodisch</dc:creator>
    <dc:date>2002-02-18T18:57:18Z</dc:date>
    <item>
      <title>crontab entries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666755#M931725</link>
      <description>Hi.&lt;BR /&gt;&lt;BR /&gt;I need to find all lines in crontab files that have numeric values in the first 4 fields (at least). For example I would want the first and third lines returned in this example&lt;BR /&gt;&lt;BR /&gt;00 07 24 7 * /home/ggewrgwer&lt;BR /&gt;00 07 * * 2-6 /home/cleanup&lt;BR /&gt;00 07 24 7 1-5 /home/ggewrgwer&lt;BR /&gt;&lt;BR /&gt;Any help would be greatly appreciated.&lt;BR /&gt;&lt;BR /&gt;Dave&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Feb 2002 17:24:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666755#M931725</guid>
      <dc:creator>Dave Walley</dc:creator>
      <dc:date>2002-02-18T17:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: crontab entries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666756#M931726</link>
      <description>crontab -l | awk ' $1~/^0-9/ &amp;amp;&amp;amp; $2~/^0-9/ &amp;amp;&amp;amp; $3~/^0-9/ &amp;amp;&amp;amp; $4~/^[0-9/ '</description>
      <pubDate>Mon, 18 Feb 2002 17:37:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666756#M931726</guid>
      <dc:creator>Krishna Prasad</dc:creator>
      <dc:date>2002-02-18T17:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: crontab entries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666757#M931727</link>
      <description>whoops&lt;BR /&gt;&lt;BR /&gt;try this&lt;BR /&gt;&lt;BR /&gt;crontab -l | awk ' $1~/^[0-9]/ &amp;amp;&amp;amp; $2~/^[0-9]/ &amp;amp;&amp;amp; $3~/^[0-9]/ &amp;amp;&amp;amp; $4~/^[0-9]/ '</description>
      <pubDate>Mon, 18 Feb 2002 17:38:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666757#M931727</guid>
      <dc:creator>Krishna Prasad</dc:creator>
      <dc:date>2002-02-18T17:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: crontab entries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666758#M931728</link>
      <description>I guess it should read like&lt;BR /&gt;&lt;BR /&gt;awk '{ print ..... }'&lt;BR /&gt;&lt;BR /&gt;Volker</description>
      <pubDate>Mon, 18 Feb 2002 17:42:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666758#M931728</guid>
      <dc:creator>Volker Borowski</dc:creator>
      <dc:date>2002-02-18T17:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: crontab entries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666759#M931729</link>
      <description>try a little reverse logic:&lt;BR /&gt;&lt;BR /&gt;crontab -l |grep -v "#"|grep -v "*"|pg&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;mark</description>
      <pubDate>Mon, 18 Feb 2002 17:43:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666759#M931729</guid>
      <dc:creator>Mark Greene_1</dc:creator>
      <dc:date>2002-02-18T17:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: crontab entries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666760#M931730</link>
      <description>Maybe something like this:&lt;BR /&gt;&lt;BR /&gt;crontab -l | grep "^[0-6]*[0-9] [0-2]*[0-9] [0-3][0-9] [0-9]*[0-9]"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Mon, 18 Feb 2002 17:45:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666760#M931730</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-02-18T17:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: crontab entries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666761#M931731</link>
      <description>FYI-&lt;BR /&gt;&lt;BR /&gt;Don't need the 'print' when you want the entire line to be displayed.</description>
      <pubDate>Mon, 18 Feb 2002 18:43:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666761#M931731</guid>
      <dc:creator>Krishna Prasad</dc:creator>
      <dc:date>2002-02-18T18:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: crontab entries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666762#M931732</link>
      <description>crontab -l |&lt;BR /&gt;grep "^[0-9][0-9]* [0-9][0-9]* [0-9][0-9]* [0-9][0-9]* " &lt;BR /&gt;&lt;BR /&gt;or even shorter:&lt;BR /&gt;&lt;BR /&gt;crontab -l |&lt;BR /&gt;egep "^[0-9]+ [0-9]+ [0-9]+ [-0]+ "&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Wodisch</description>
      <pubDate>Mon, 18 Feb 2002 18:57:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crontab-entries/m-p/2666762#M931732</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2002-02-18T18:57:18Z</dc:date>
    </item>
  </channel>
</rss>

