Works for me:
Code:
/etc/cron.d$ cat date
* * * * * root /root/date.sh
/etc/cron.d$ ls -l /root/*date*
-rwx------ 1 root root 32 Aug 20 12:52 /root/date.sh*
-rw-r--r-- 1 root root 87 Aug 20 12:56 /root/thedate
/etc/cron.d$ sudo cat /root/date.sh
#!/bin/sh
date >> /root/thedate
/etc/cron.d$ cat /root/thedate
Wed Aug 20 12:52:35 CDT 2008
Wed Aug 20 12:55:01 CDT 2008
Wed Aug 20 12:56:01 CDT 2008
All on my linode running Debian etch. The first line in "thedate" is from a manual run; the next two are from cron updates. (BTW, '*/1 * * * *' is the same as '* * * * *').