Ask a Question related to Linux / Unix Administration, Design and Development.

  1. #1

    Default Crontab

    How to run a script the first Monday of every month through crontab
    Antigoni Guest

  2. Similar Questions and Discussions

    1. scripting crontab entries
      I want to be able to update a user's crontab from a script. tabs in /var/cron/tabs carry a warning that the file should not be edited directly, so...
    2. crontab manipulation from php
      Maybe someone can give me a short help with this... I got a server application in a LAMP environment doing batch tasks. A cronjob serves as a...
    3. What is wrong with this crontab?
      On Thu, 31 Jul 2003 15:09:34 +0200, Eirik wrote: I think it really depends on your cron daemon. The default for HP/UX doesn't like the...
    4. crontab bug?
      Hi! When I edit my crontab (crontab -e) and then save it, it says normally that Processing '/etc/joe/editorrc'...done File...
    5. changes to crontab not effective
      Hi Andreas! I think I tried the second one, also tried now the first one with 5/* * * * * root sh /etc/init.d/backup.sh but didn't work. ...
  3. #2

    Default Re: Crontab

    On 2004-06-04, Antigoni wrote:
    > How to run a script the first Monday of every month through crontab
    This runs at midnight; adjust the first 2 parameters to have it
    run at another time:

    0 0 1-7 * 1 /path/to/script

    --
    Chris F.A. Johnson [url]http://cfaj.freeshell.org/shell[/url]
    ================================================== =================
    My code (if any) in this post is copyright 2004, Chris F.A. Johnson
    and may be copied under the terms of the GNU General Public License
    Chris F.A. Johnson Guest

  4. #3

    Default Re: Crontab

    In article <2iagm2Fkkd58U1@uni-berlin.de>,
    "Chris F.A. Johnson" <c.fa.johnson@rogers.com> wrote:
    > On 2004-06-04, Antigoni wrote:
    > > How to run a script the first Monday of every month through crontab
    >
    > This runs at midnight; adjust the first 2 parameters to have it
    > run at another time:
    >
    > 0 0 1-7 * 1 /path/to/script
    Incorrect. That runs the script every monday and *also* the first seven
    days of every month.

    There are two common solutions:

    1) Run the script every Monday, and have the script check whether the
    day of the month is in the range 1-7.

    2) Run the script on days 1-7 of every month, and have it check whether
    the current day is Monday.

    --
    Barry Margolin, [email]barmar@alum.mit.edu[/email]
    Arlington, MA
    *** PLEASE post questions in newsgroups, not directly to me ***
    Barry Margolin Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139