脚本任务实现

This commit is contained in:
xueli.xue 2017-04-27 18:45:14 +08:00
parent 113e70cab7
commit a3bef921f7
1 changed files with 4 additions and 2 deletions

View File

@ -192,12 +192,13 @@ public class DemoGlueJobHandler extends IJobHandler {
</textarea> </textarea>
<textarea class="glueSource_shell" style="display:none;" > <textarea class="glueSource_shell" style="display:none;" >
#!/bin/bash #!/bin/bash
echo "xxl-job: hello shell" echo "xxl-job: hello shell"
for item in 1 2 3 for item in 1 2 3
do do
echo "shell : $item" echo "shell : $item"
sleep 1s sleep 1s
done done
echo "Good bye!" echo "Good bye!"
@ -216,6 +217,7 @@ logging.info('xxl-job: hello python')
for num in range(1, 3): for num in range(1, 3):
time.sleep(1) time.sleep(1)
logging.info('python :' + str(num) ) logging.info('python :' + str(num) )
logging.info('Good bye!') logging.info('Good bye!')
</textarea> </textarea>