1.crontab格式
\# 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
2.crontab使用
$ crontab -e
在最后一行添加命令,如:每分钟我们会在/home/shiyanlou目录下创建一个以当前的年月日时分秒为名字的空白文件
$
*/1 * * * * touch /home/shiyanlou/$(date +\%Y\%m\%d\%H\%M\%S)
当然我们也可以通过这样的一个指令来查看我们添加了哪些任务
$ crontab -l