Quote:
|
Originally Posted by sjumma
Did you try the #3 format i suggested?
i tried with
* * * * * echo `date`
did not work either
|
That command isn't going to work cause it has nowhere to output the DATE to. Change it so
* * * * * date > /tmp/date.tmp
Then every minute the /tmp/date.tmp should be refreshed with the current date and time.