码迷,mamicode.com
首页 > 其他好文 > 详细

crontab 导入任务列表

时间:2014-08-21 15:19:16      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:crontab

crontab 导入任务列表

crontab filename      #导入任务列表,导入会把之前的清除


[root@host]# crontab -l | grep -v "#" > file.txt
[root@host]# echo "* * * * * echo ok" >> file.txt
[root@host]# crontab file.txt


[root@host]# cat file.txt 
MAILTO=""
*/30 * * * * sh /usr/shell/updatetime.sh

[root@host]# crontab file.txt 

[root@host]# crontab -l
# DO NOT EDIT THIS FILE - edit the master and reinstall.
# (file.txt installed on Thu Aug 21 11:00:57 2014)
# (Cron version V5.0 -- $Id: crontab.c,v 1.12 2004/01/23 18:56:42 vixie Exp $)
MAILTO=""
*/30 * * * * sh /usr/shell/updatetime.sh

[root@host]# /etc/init.d/crond restart


crontab 导入任务列表,布布扣,bubuko.com

crontab 导入任务列表

标签:crontab

原文地址:http://ltlwx.blog.51cto.com/813478/1542983

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!