On Sun, Feb 25, 2007 at 08:39:42PM +0530, Rony wrote:
I made my own cron file based on your example. Here it is below. Is it correct? I plan to run the cron job as root so no sudo commands will be used.
10 22 * * * /usr/bin/wvdial reliance 11 22 * * * /sbin/route add default ppp0 12 22 * * * /usr/bin/wget/curl/http://cdimage.debian.org/cdimage/weekly-builds/i386/iso-cd/debian-testing-i... 55 5 * * * /sbin/halt -p
I am not sure about that wget line, but I'd use:
12 22 * * * /usr/bin/wget -c http://cdimage.debian.org/cdimage/weekly-builds/i386/iso-cd/debian-testing-i...
Of course, ensure that's what you want.
Kumar