so, i am trying to setup a cronjob (first ever) to shutdown my Kubuntu 14.04 server every weekday at 10:00am.
i ran crontab -e and put the following lines in:
* 10 * * 1 shutdown -h now
* 10 * * 2 shutdown -h now
* 10 * * 3 shutdown -h now
* 10 * * 4 shutdown -h now
* 10 * * 5 shutdown -h now
is this correct? will it run on only weekdays at 10:00am?
thanks!
i ran crontab -e and put the following lines in:
* 10 * * 1 shutdown -h now
* 10 * * 2 shutdown -h now
* 10 * * 3 shutdown -h now
* 10 * * 4 shutdown -h now
* 10 * * 5 shutdown -h now
is this correct? will it run on only weekdays at 10:00am?
thanks!
Comment