2017-09-12 23 views
0

4時間ごとにautosysでジョブをスケジュールしたいと思っています。このように:00:40、04:40、08:40、12:40 誰かがJILLコードの構文を助けてくれますか?私はこれを試みたそれは失敗している。Autosysで4時間ごとにジョブをスケジュールする方法

start_times: "0時40分、午前4時40分、午前8時40分、12:40、16:40"

DAYS_OF_WEEK: "SU、MO、TU、私たち、目、FR、SA"

date_conditions:ここでは "1"

+0

私が知る限り、構文が正しいので、これはうまくいくはずです。 jilファイルをインポートするときに発生するエラーを提供できますか? – Will

答えて

0

あなたが行く:

insert_job: job_name job_type: BOX 
owner: [email protected] 
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" 
0

は、以下のことを試してみてください。

insert_job: job_name job_type: c <br> 
command: 'ls /abc/def/' <br> 
machine: [email protected] <br> 
owner: [email protected] <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> 
関連する問題