1. 程式人生 > >CronTab命令實例

CronTab命令實例

pre 運行 ont style name white mod col rest



每2分鐘 將date寫入到time.log(以下的為奇數分鐘運行)
*/2 * * * * date >> ~/time.log
1-59/2 * * * * date >> ~/time.log

每天的23:30分重新啟動apache

30 23 * * *   /etc/init.d/apache2 restart
每月的1,10,20號的23:30分重新啟動apache 30 23 1,10,20 * * /etc/init.d/apache2 restart

每月的1到15號的23:30重新啟動apache

30 23 1-15 * * /etc/init.d/apache2 restart

晚上23點到早上6點之間每30分鐘啟動一次apache

*/30 23-7 * * * /etc/init.d/apache2 restart
0,30 23-7 * * * /etc/init.d/apache2 restart
0-59/30 23-7 * * * /etc/init.d/apache2 restart






CronTab命令實例