<?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 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116662#M7878</link>
    <description>Good pick up Gerald, I did over-look that.  My apologies George.</description>
    <pubDate>Thu, 13 Nov 2003 01:01:16 GMT</pubDate>
    <dc:creator>Stuart Browne</dc:creator>
    <dc:date>2003-11-13T01:01:16Z</dc:date>
    <item>
      <title>Crontab</title>
      <link>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116656#M7872</link>
      <description>my crontab's list is below:&lt;BR /&gt;#crontab -l&lt;BR /&gt;15,30,45,59 10-11 * * * /u/pinguin/bin/ochkdb.sh&lt;BR /&gt;&lt;BR /&gt;Why my cronjob still running at 11.15 and so on ??&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Nov 2003 23:43:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116656#M7872</guid>
      <dc:creator>george_114</dc:creator>
      <dc:date>2003-11-11T23:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Crontab</title>
      <link>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116657#M7873</link>
      <description>That crontab says to run at the following times:&lt;BR /&gt;&lt;BR /&gt;10:15&lt;BR /&gt;10:30&lt;BR /&gt;10:45&lt;BR /&gt;10:59&lt;BR /&gt;11:15&lt;BR /&gt;11:30&lt;BR /&gt;11:45&lt;BR /&gt;11:59&lt;BR /&gt;&lt;BR /&gt;everyday.  When did you want it to run? just within the 10 o'clock range, every 15 minutes?  Why not use:&lt;BR /&gt;&lt;BR /&gt;0,15,30,45 10 * * * /u/pinguin/bin/ochkdb.sh&lt;BR /&gt;&lt;BR /&gt;?&lt;BR /&gt;&lt;BR /&gt;Or better yet, as it's probably got a non-archaic cron daemon:&lt;BR /&gt;&lt;BR /&gt;*/15 10 * * * /usr/pinguin/bin/ochkdb.sh&lt;BR /&gt;&lt;BR /&gt;This doesn't check to see if the program was running from the previous invocation of course.  If it takes longer than 15 minutes to run, maybe you should throw some starts in ochkdb.sh instead.</description>
      <pubDate>Tue, 11 Nov 2003 23:49:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116657#M7873</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2003-11-11T23:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Crontab</title>
      <link>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116658#M7874</link>
      <description>When specifying a range for your hours, the numbers are inclusive.  So by using "10-11", your script will run at: 10:15, 10:30, 10:45, 10:59, 11:15, 11:30, 11:45, and 11:59.  If this is not what you want, change "10-11" to only "10".&lt;BR /&gt;man 5 crontab - explains in detail.&lt;BR /&gt;Hope this helps.</description>
      <pubDate>Tue, 11 Nov 2003 23:54:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116658#M7874</guid>
      <dc:creator>Chris DePetro</dc:creator>
      <dc:date>2003-11-11T23:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Crontab</title>
      <link>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116659#M7875</link>
      <description>How to write the crontab script if i want to run my cron job every 15 minute except at 4-5 am ???</description>
      <pubDate>Wed, 12 Nov 2003 01:22:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116659#M7875</guid>
      <dc:creator>george_114</dc:creator>
      <dc:date>2003-11-12T01:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Crontab</title>
      <link>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116660#M7876</link>
      <description>*/15 0-3,6-23 * * * &lt;PROGRAM&gt;&lt;BR /&gt;&lt;BR /&gt;I'm reasonably certain that you can't wrap the 24 hour barrier (i.e. '6-3'), thus the two ranged-hours.&lt;/PROGRAM&gt;</description>
      <pubDate>Wed, 12 Nov 2003 01:25:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116660#M7876</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2003-11-12T01:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Crontab</title>
      <link>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116661#M7877</link>
      <description>&lt;QUOTE&gt;&lt;BR /&gt;How to write the crontab script if i want to run my cron job every 15 minute except at 4-5 am ??? &lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;I read that as being he doesn't want it running between the hours of 0400 and 0500 -- ie. no run from 04:00:00 - 04:59:59. So, you left an hour out of your range.&lt;BR /&gt;&lt;BR /&gt;*/15 0-3,6-23 * * * &lt;PROGRAM&gt;&lt;BR /&gt;&lt;BR /&gt;should be&lt;BR /&gt;&lt;BR /&gt;*/15 0-3,5-23 * * * &lt;PROGRAM&gt;&lt;BR /&gt;&lt;BR /&gt;to include the 5am to 5:59am time frame.&lt;BR /&gt;&lt;BR /&gt;man 5 crontab doesn't say anything about wrapping across midnight and I assume you are correct on that matter BECAUSE it isn't mentioned.&lt;BR /&gt;&lt;BR /&gt;G&lt;BR /&gt;&lt;/PROGRAM&gt;&lt;/PROGRAM&gt;</description>
      <pubDate>Thu, 13 Nov 2003 00:59:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116661#M7877</guid>
      <dc:creator>Gerald V. Livingston II</dc:creator>
      <dc:date>2003-11-13T00:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Crontab</title>
      <link>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116662#M7878</link>
      <description>Good pick up Gerald, I did over-look that.  My apologies George.</description>
      <pubDate>Thu, 13 Nov 2003 01:01:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/crontab/m-p/3116662#M7878</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2003-11-13T01:01:16Z</dc:date>
    </item>
  </channel>
</rss>

