如何在Autosys中每4小时安排一份工作

时间:2017-09-12 14:49:18

标签: autosys

我想每隔4小时安排一次autosys工作。像这样:00:40,04:40,08:40,12:40。 任何人都可以帮助使用JILL代码语法吗?我试过这个失败了。

start_times:“00:40,4:40,8:40,12:40,16:40”

days_of_week:“su,mo,tu,we,th,fr,sa”

date_conditions:“1”

2 个答案:

答案 0 :(得分:0)

你走了:

insert_job: job_name   job_type: BOX 
owner: owner@us
date_conditions: 1
days_of_week: su,mo,tu,we,th,fr,sa
start_times: "00:40,04:40,08:40,12:40,16:40"
description: "test box"

答案 1 :(得分:0)

尝试以下方法:

insert_job: job_name   job_type: c <br>
command: 'ls /abc/def/' <br>
machine: abc@def.com <br>
owner: owner@us <br>
date_conditions: 1 <br>
days_of_week: all <br>
start_times: "00:40,04:40,08:40,12:40,16:40" <br>
description: "test box" <br>
std_out_file: abc/def/success.log <br>
std_err_file: abc/def/error.log <br>