一小时执行一次
0 */1 * * * command
两小时执行一次
0 */2 * * * command
命令相关
启动计划任务
Ubuntu
/etc/init.d/cron start
或
service cron start
CentOS
/etc/init.d/crond start
或
service crond start
停止计划任务
Ubuntu
/etc/init.d/cron stop
或
service cron stop
CentOS
/etc/init.d/crond stop
或
service crond stop
查看计划任务状态
Ubuntu
/etc/init.d/cron status
或
service cron status
CentOS
/etc/init.d/crond status
或
service crond status
重启计划任务
Ubuntu
/etc/init.d/cron restart
或
service cron restart
CentOS
/etc/init.d/crond restart
或
service crond restart
重载计划任务
Ubuntu
/etc/init.d/cron reload
或
service cron reload
CentOS
/etc/init.d/crond reload
或
service crond reload
查看Crontab相关指令
crontab -h
编辑计划任务
crontab -e
修改计划任务默认的编辑器
select-editor
查看已有的计划任务
crontab -l
也可以查看相关目录下是否有计划任务文件
Ubuntu
/var/spool/cron/crontabs
CentOS
/var/spoll/cron/
删除当前用户的计划任务
crontab -r
删除指定用户的计划任务(如hello用户的计划任务)
crontab -i hello