<?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: Cron question in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975497#M293589</link>
    <description>Shalom etc,&lt;BR /&gt;&lt;BR /&gt;Note that Linux has initiated some conventions that Unix does not support. The */4 convention you might find on a Linux support board will generally not work.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Wed, 04 Apr 2007 16:05:50 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2007-04-04T16:05:50Z</dc:date>
    <item>
      <title>Cron question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975491#M293583</link>
      <description>How do I cron a script to run every 4 minutes? &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Apr 2007 15:38:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975491#M293583</guid>
      <dc:creator>dictum9</dc:creator>
      <dc:date>2007-04-04T15:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Cron question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975492#M293584</link>
      <description>2 ways to do it&lt;BR /&gt;&lt;BR /&gt;1) You will have to list the minutes explictly in the cron like this&lt;BR /&gt;&lt;BR /&gt;0,4,8,12,16,20.....56 * * * * &lt;BR /&gt;&lt;BR /&gt;2) Control the execution programmatically using a wrapper.</description>
      <pubDate>Wed, 04 Apr 2007 15:41:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975492#M293584</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2007-04-04T15:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Cron question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975493#M293585</link>
      <description>0,4,8,12,16,20,24,28,32,36,40,44,48,52,56 * * * * /xxx/yyy/mytask.sh</description>
      <pubDate>Wed, 04 Apr 2007 15:41:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975493#M293585</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-04-04T15:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Cron question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975494#M293586</link>
      <description>By the way, did you bother to do a "man crontab" before you asked this question. That would tell you that you would do something like this (as well as answer your question):&lt;BR /&gt;&lt;BR /&gt;crontab -l &amp;gt; myfile&lt;BR /&gt;edit myfile and make your changes&lt;BR /&gt;crontab &amp;lt; myfile&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Apr 2007 15:43:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975494#M293586</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-04-04T15:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Cron question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975495#M293587</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Look at the manpages for 'crontab' to see that a comma-delimited list is what you want:&lt;BR /&gt;&lt;BR /&gt;# 0,4,8,12,16,20,24,28,32,36,40,44,48,52,56 * * * * /etc/mything&lt;BR /&gt;&lt;BR /&gt;...would run /etc/mything every 4-minutes of every hour of every day of every month.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 04 Apr 2007 15:43:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975495#M293587</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-04-04T15:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Cron question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975496#M293588</link>
      <description>#crontab -e &lt;BR /&gt;make enrty&lt;BR /&gt;0,4,8,12,16,20,24,28,32,36,40,44,48,52,56 * * * *  script.sh &lt;BR /&gt;&lt;BR /&gt;DO this</description>
      <pubDate>Wed, 04 Apr 2007 15:56:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975496#M293588</guid>
      <dc:creator>sachit patil</dc:creator>
      <dc:date>2007-04-04T15:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Cron question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975497#M293589</link>
      <description>Shalom etc,&lt;BR /&gt;&lt;BR /&gt;Note that Linux has initiated some conventions that Unix does not support. The */4 convention you might find on a Linux support board will generally not work.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 04 Apr 2007 16:05:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975497#M293589</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-04-04T16:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Cron question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975498#M293590</link>
      <description>0,4,8,12,16,20,24,28,32,36,40,44,48,52,56 * * * * /full_path/your_script 1&amp;gt;out 2&amp;gt;err&lt;BR /&gt;&lt;BR /&gt;Note that if you not redirect the oupit/error of the script this is send to the user email and you can see it by elm.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Art</description>
      <pubDate>Thu, 05 Apr 2007 03:09:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975498#M293590</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2007-04-05T03:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Cron question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975499#M293591</link>
      <description>hi,&lt;BR /&gt;see also:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1114824" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1114824&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Thu, 05 Apr 2007 04:27:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cron-question/m-p/3975499#M293591</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2007-04-05T04:27:07Z</dc:date>
    </item>
  </channel>
</rss>

