博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux 定时器怎么用? crontab 基础
阅读量:6834 次
发布时间:2019-06-26

本文共 824 字,大约阅读时间需要 2 分钟。


创建定时器
# 查看$ crontab -l# 创建$ crontab -e# 每分钟输出一次当前时间* * * * * echo `date` >> /demo.log# 查看定时$ cat /etc/crontabSHELL=/bin/bashPATH=/sbin:/bin:/usr/sbin:/usr/binMAILTO=""# For details see man 4 crontabs# Example of job definition:# .---------------- minute (0 - 59)# |  .------------- hour (0 - 23)# |  |  .---------- day of month (1 - 31)# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat# |  |  |  |  |# *  *  *  *  * user-name  command to be executed# 删除$crontab -r# 查看cron的状态,设为开机启动$ systemctl status crond (查看状态)$ systemctl enable crond (设为开机启动)$ systemctl start crond (启动crond服务)复制代码
  • 查看效果

  • 修改/etc/crontab这种方法只有root用户能用,这种方法更加方便与直接直接给其他用户设置计划任务,而且还可以指定执行shell等等,crontab -e这种所有用户都可以使用,普通用户也只能为自己设置计划任务。然后自动写入/var/spool/cron/usename

转载地址:http://erqkl.baihongyu.com/

你可能感兴趣的文章
微服务架构实践之缓存
查看>>
raid0、raid1、raid5、raid10 flash
查看>>
[转载]PS各个工具的字母快捷键和英文全名
查看>>
Java中的单例模式
查看>>
Android初学者教程
查看>>
java web项目使用log4j的使用笔记
查看>>
linux磁盘挂载
查看>>
透過proxychains讓不支持代理的程序通過代理上網
查看>>
自学篇之--js 提取复选框和单选框的值 和纯css的3D按钮
查看>>
安卓入门笔记之Activity
查看>>
关于Shiro框架权限标识符中*使用的总结
查看>>
Hibernate中HQL函数汇总及其说明
查看>>
用到lucene的爬虫的简单实现
查看>>
nodejs环境安装
查看>>
mac easy_install 安装插件失败
查看>>
java sso
查看>>
在Eclipse下面安装spket
查看>>
Xcode常用快捷键
查看>>
lua 入门(一)
查看>>
ActiveReport的小数显示方法
查看>>