# timelyrun.c **Repository Path**: EEPPEE_admin/timelyrun.c ## Basic Information - **Project Name**: timelyrun.c - **Description**: timely run my shell command in some seconds - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-01 - **Last Updated**: 2025-09-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # timelyrun.c - 定时执行shell command,或提供程序路径就行 ```c /* timelyrun - 定时执行命令的程序 * 用法: timelyrun <要执行的程序> [程序参数...] * 配置文件: timelyrun.ini (包含时间间隔设置) * 平台特性: Windows平台的输入命令请给出绝对路径,即使它已经在PATH上了,Linux平台可能不需要 * 没有全力测试, 因为我觉得够用就行,本身就是为了能定时执行命令而已, * timelyrun本身不接受参数,只需要配置文件timelyrun.ini来配置时间间隔 * 程序后面的所有参数都是特定命令本身携有的参数 */ ``` # build - just gcc build, not more args ## debian deb package - build-deb.sh # sample usage with this repo ## windows ```cmd a.exe C:\Windows-ToolChain\x86_64-15.1.0-release-posix-seh-msvcrt-rt_v12-rev0\mingw64\bin\gcc.exe timelyrun.c -o timelyrun.exe ```