<?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: query about crontab in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984934#M123036</link>
    <description>Sorry typo above file is /var/adm/cron/cron.allow</description>
    <pubDate>Fri, 30 May 2003 04:05:00 GMT</pubDate>
    <dc:creator>Con O'Kelly</dc:creator>
    <dc:date>2003-05-30T04:05:00Z</dc:date>
    <item>
      <title>query about crontab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984930#M123032</link>
      <description>Hello all,&lt;BR /&gt;&lt;BR /&gt;How do i schedule any jobs in cron??&lt;BR /&gt;&lt;BR /&gt;Any answere will be appreciable.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rajesh G.</description>
      <pubDate>Fri, 30 May 2003 03:52:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984930#M123032</guid>
      <dc:creator>Rajesh G. Ghone</dc:creator>
      <dc:date>2003-05-30T03:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: query about crontab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984931#M123033</link>
      <description>The man pages explain this:&lt;BR /&gt;&lt;BR /&gt;Minute hour monthday Month weekday job&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;15 1 * * 0 /usr/local/bin/fred&lt;BR /&gt;&lt;BR /&gt;Runs a program called 'fred' at 1:15AM every sunday morning.&lt;BR /&gt;See this document&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B9106-90008/B9106-90008_top.html&amp;amp;con=/hpux/onlinedocs/B9106-90008/00/00/70-con.html&amp;amp;toc=/hpux/onlinedocs/B9106-90008/00/00/70-toc.html&amp;amp;searchterms=cron&amp;amp;queryid=20030529-225932" target="_blank"&gt;http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B9106-90008/B9106-90008_top.html&amp;amp;con=/hpux/onlinedocs/B9106-90008/00/00/70-con.html&amp;amp;toc=/hpux/onlinedocs/B9106-90008/00/00/70-toc.html&amp;amp;searchterms=cron&amp;amp;queryid=20030529-225932&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Michael&lt;BR /&gt;"When I have trouble spelling, it's called fat finger syndrome" &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 30 May 2003 04:01:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984931#M123033</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-05-30T04:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: query about crontab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984932#M123034</link>
      <description>Hi&lt;BR /&gt;Use # crontab -e, make your entries and save. &lt;BR /&gt;If its a user other than root, ensure that they have cron access through editing /var/adm/cron.allow.  Then as that user simply use crontab -e.&lt;BR /&gt;For info on specific fields in cron, see man cron.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Con&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 30 May 2003 04:04:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984932#M123034</guid>
      <dc:creator>Con O'Kelly</dc:creator>
      <dc:date>2003-05-30T04:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: query about crontab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984933#M123035</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;If you consider this simple cron script:&lt;BR /&gt;&lt;BR /&gt;#*******************************************************************************&lt;BR /&gt;# min|hour |day  |month|day  |script                       |Logging Error and Output&lt;BR /&gt;#    |     |of mo|     |of wk|                             | &lt;BR /&gt;#----|-----|-----|-----|-----|-----------------------------|---------------------&lt;BR /&gt;00    03     *     *     *     /prod/allscripts/myscript.sh 1&amp;gt;/prod/allscripts/logfiles/output.log 1&amp;gt;/prod/allscripts/logfiles/error.log&lt;BR /&gt;#*******************************************************************************&lt;BR /&gt;# END OF TABLE           day0-&amp;gt;Sunday  day6-&amp;gt;Saturday&lt;BR /&gt;#*******************************************************************************&lt;BR /&gt;&lt;BR /&gt;where the script i want to schedule is: /prod/allscripts/myscript.sh&lt;BR /&gt;and the output generated during execution is: /prod/allscripts/logfiles/output.log &lt;BR /&gt;and the error generated during execution is: /prod/allscripts/logfiles/error.log &lt;BR /&gt;&lt;BR /&gt;you can schedule is either by:&lt;BR /&gt;&lt;BR /&gt;1. editing the crontab table directly:&lt;BR /&gt;   crontab  -e&lt;BR /&gt;&lt;BR /&gt;2. Loading the script from a file&lt;BR /&gt;   crontab mycron.crn&lt;BR /&gt;&lt;BR /&gt;For more information, do:&lt;BR /&gt;man cron&lt;BR /&gt;man crontab&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if you any further queries, please revert.&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj&lt;BR /&gt;</description>
      <pubDate>Fri, 30 May 2003 04:04:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984933#M123035</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-05-30T04:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: query about crontab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984934#M123036</link>
      <description>Sorry typo above file is /var/adm/cron/cron.allow</description>
      <pubDate>Fri, 30 May 2003 04:05:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984934#M123036</guid>
      <dc:creator>Con O'Kelly</dc:creator>
      <dc:date>2003-05-30T04:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: query about crontab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984935#M123037</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;also&lt;BR /&gt;&lt;BR /&gt;to view the current crontab, do&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;crontab -l&lt;BR /&gt;&lt;BR /&gt;I have attached the sample crontab as an example. Make sure that you make necessary modifications to /var/adm/cron/cron.allow (the List of allowed users)&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Fri, 30 May 2003 04:08:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984935#M123037</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-05-30T04:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: query about crontab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984936#M123038</link>
      <description>Hi,&lt;BR /&gt;editing the crontab is usefull for scheduling jobs at regular intervals.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;IF you weant to schedule job you can also use the&lt;BR /&gt;&lt;BR /&gt;"at" command.&lt;BR /&gt;&lt;BR /&gt;at -f /mysfiles.sh now&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;schedule a job for now,&lt;BR /&gt;&lt;BR /&gt;at -l &lt;BR /&gt;&lt;BR /&gt;showw jobs scheduled for start.&lt;BR /&gt;&lt;BR /&gt;In the directory /var/spool/cron/ ypu can find the files where is stored the information for later start.&lt;BR /&gt;&lt;BR /&gt;man at will give you much more infos.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt; Massimo&lt;BR /&gt;</description>
      <pubDate>Fri, 30 May 2003 06:28:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-about-crontab/m-p/2984936#M123038</guid>
      <dc:creator>Massimo Bianchi</dc:creator>
      <dc:date>2003-05-30T06:28:07Z</dc:date>
    </item>
  </channel>
</rss>

