a simple-file timer program , use cron , support win , easy to use
一个单文件的定时任务执行器,使用cron字符串定时,支持win,易于使用
example/例如:
./timer.exe -r "* 0/1 * * * *" -c "shutdown -s -t 60"
Use the parameter - f
to specify the location of the configuration file, for example / timer. exe -f cfg. txt
(recommended to use UTF-8)
使用参数-f
指定配置文件,例如./timer.exe -f cfg.txt
(如果不使用中文,推荐使用utf-8编码)
The format of the config file like this:
配置文件的格式如下:
* 0/15 * * * * > shutdown -s -t 60
* * 0/1 * * * > start cmd.exe
* * * 0/1 * * > start backup.bat
Put simply, one task per line, use the symbol '>' to separate cron and command
简单地说,一行一个任务,使用符号'>'分隔cron字符串和需要执行的命令
veeeeeery simple , download all files , and use gcc timer.cpp
,done!
非常简单,下载文件,然后gcc timer.cpp
,一切完成~
use croncpp and cmdline in lib
dir
项目依赖了croncpp和cmdline,在lib
文件夹中
- 如果需要在指令中使用中文,例如
satrt ./中文/中文文件.bat
,则可能需要将配置文件设置为gbk编码