Package: cron
Version: 3.0pl1-128
Severity: wishlist
File: /usr/share/man/man5/crontab.5.gz

At
       # Run on every second Saturday of the month
       0 4 8-14 * *    test $(date +\%u) -eq 6 && echo "2nd Saturday"
Add
       # Same thing, slightly more efficient
       0 4 * * * Sat   d=$(date +\%e) && test $d -ge 8 -a $d -le 14 && echo 
"2nd Saturday"

In fact you don't need the quote marks either.

Reply via email to