当前位置: 技术问答>linux和unix
如何让我的C程序能定时自动运行呢?并把输出结果放到指定目录下?
来源: 互联网 发布时间:2015-01-27
本文导语: 如题 | crond crontab用时间表就可以了! | crontab -e后 * * * * * 程序路径 1>log目录 2>log目录 分 时 周 月 年 | 首先, 编辑一个文本文件 mycron.txt 0 0 ...
如题
|
crond
crontab用时间表就可以了!
crontab用时间表就可以了!
|
crontab -e后
* * * * * 程序路径 1>log目录 2>log目录
分 时 周 月 年
* * * * * 程序路径 1>log目录 2>log目录
分 时 周 月 年
|
首先, 编辑一个文本文件 mycron.txt
0 0 * * * /usr/bin/oracle 1>/usr/bin/oracle.log 2>&1
(假设你想在每天凌晨启动oracle)
然后运行
crontab mycron.txt
0 0 * * * /usr/bin/oracle 1>/usr/bin/oracle.log 2>&1
(假设你想在每天凌晨启动oracle)
然后运行
crontab mycron.txt