<?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 Editing the cronjobs in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/editing-the-cronjobs/m-p/6505128#M487216</link>
    <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone please tell me how can I make some entries in cron if I have to make some process automated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like I want that the nickel script should run daily or on weekly basis and a script containing some imp commands like&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ioscan, bdf. cmviewcl, etc should run daily in the morning and evening.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest how can I do it and where I have to edit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't want ready made script as I have to learn how to do it I want the procedure or anything related to it in a basic form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since I am new to hpux I want to know about unix.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please also guide me in any way possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mehul&lt;/P&gt;</description>
    <pubDate>Tue, 10 Jun 2014 12:42:46 GMT</pubDate>
    <dc:creator>Mehul5</dc:creator>
    <dc:date>2014-06-10T12:42:46Z</dc:date>
    <item>
      <title>Editing the cronjobs</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/editing-the-cronjobs/m-p/6505128#M487216</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone please tell me how can I make some entries in cron if I have to make some process automated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like I want that the nickel script should run daily or on weekly basis and a script containing some imp commands like&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ioscan, bdf. cmviewcl, etc should run daily in the morning and evening.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest how can I do it and where I have to edit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't want ready made script as I have to learn how to do it I want the procedure or anything related to it in a basic form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since I am new to hpux I want to know about unix.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please also guide me in any way possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mehul&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2014 12:42:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/editing-the-cronjobs/m-p/6505128#M487216</guid>
      <dc:creator>Mehul5</dc:creator>
      <dc:date>2014-06-10T12:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Editing the cronjobs</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/editing-the-cronjobs/m-p/6505434#M487219</link>
      <description>&lt;P&gt;To edit a crontab file you use 'crontab -e'.&amp;nbsp; This will open your crontab file in the 'vi' editor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From there you add entrires in the following format:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;min&amp;gt; &amp;lt;hr&amp;gt; &amp;lt;monthday&amp;gt; &amp;lt;month&amp;gt; &amp;lt;day of week&amp;gt; &amp;lt;command to run&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The explanation of each field from the 'crontab' man page (remember that man pages are your friend):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;      The entries in a crontab file are lines of six fields each.  The
      fields are separated by spaces or tabs.  The lines have the following
      format:

           minute  hour  monthday  month  weekday  command

      The first five are integer patterns that specify when the sixth field,
      command, should be executed.  They can have the following ranges of
      values:

           minute         The minute of the hour, 0-59

           hour           The hour of the day, 0-23

           monthday       The day of the month, 1-31

           month          The month of the year, 1-12

           weekday        The day of the week, 0-6, 0=Sunday

      Each pattern can be either an asterisk (*), meaning all legal values,
      or a list of elements separated by commas.  An element is either a
      number in the ranges shown above, or two numbers in the range
      separated by a hyphen (meaning an inclusive range).  Note that the
      specification of days can be made in two fields: monthday and weekday.
      If both are specified in an entry, they are cumulative.  &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, if you want to run a script called "dosomething" that is in the /do/it/now directory at 3:15 AM every Wednesday morning you crontab would like like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;15 3 * * 3 /do/it/now/dosomething&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Read through the crontab man page for more explanations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# man crontab&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2014 17:01:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/editing-the-cronjobs/m-p/6505434#M487219</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2014-06-10T17:01:05Z</dc:date>
    </item>
  </channel>
</rss>

