Cygwin cron 在错误的时间启动
我有一个 cron 作业,每天 1 点开始,
0 1 * * * somescript
脚本下载更新我的文件,但是当我检查修改日期时,最早的文件说它是在凌晨 3:30 修改的,这种情况已经发生了 2 天,所以我尝试
*/1 * * * * date >> c:/date.txt
了看到日期没问题。是否还有其他原因使 cron 的计时推迟了 2 个半小时?或者 cron 是否使用了我需要纠正的其他计时?
如果一切都失败了,我想我可以将脚本计时移至 30 10 * * * 但我想更正时间/找出我做错了什么。
我的curl输出:
周五7月2日上午3:31:43中部夏令时间2010
myfile
%总计%接收%Xferd平均速度时间时间时间当前
0 0 0 0 0 0 0 0 --:--:-- --:- -:-- --:--:-- 0
100 273k 100 273k 0 0 427k 0 --:--:-- --:--:-- --:--:-- 460k
所以它没有不用那么长时间。
I have a cron job starting at 1 o'clock everyday
0 1 * * * somescript
the script downloads updates my files, however when I check my modified date the earliest file says it was modified at 3:30 A.M. and this happened for 2 days now, so I tried
*/1 * * * * date >> c:/date.txt
and saw that the date is fine. Is there something else throwing cron's timing off by 2 and a half hours? or does cron use some other timing that I need to correct?
If all else fails I guess I could just move my script timing up to 30 10 * * * but I'd like to get the time corrected/find out what I'm doing wrong.
My curl output:
Fri Jul 02 3:31:43 AM Central Daylight Time 2010
myfile
% Total % Received % Xferd Average Speed Time Time Time Current
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 273k 100 273k 0 0 427k 0 --:--:-- --:--:-- --:--:-- 460k
So it didn't take that long.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
cron 条目似乎是正确的。文件下载时间是否较长,因此修改日期较晚?或者另一个进程稍后可以修改这些文件?
The cron entry seems correct. Did the file take a long time to download so the modification date was later? Or aanother process could have modified the files later on?