Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This defines a date dependency for a node. There can be multiple date dependencies. The European format is used for dates, which is: dd.mm.yy as in 31.12.2012. Any of the three number fields can be expressed with a wildcard `` to * to mean any valid value.  Thus, 01.*.* means the first day of every month of every year.


Currently, you cannot specify a range of values for any of the three number fields in a date, See "day" for a way to specify the first seven days.

Code Block
task x          # Run the task twice a month 
   date 1.*.*   # month, on 1st and 15th
   date 15.*.*

...