Ver código fonte

脚本任务实现

xueli.xue 8 anos atrás
pai
commit
a3bef921f7

+ 4 - 2
xxl-job-admin/src/main/webapp/WEB-INF/template/jobinfo/jobinfo.index.ftl Ver arquivo

192
 </textarea>
192
 </textarea>
193
 <textarea class="glueSource_shell" style="display:none;" >
193
 <textarea class="glueSource_shell" style="display:none;" >
194
 #!/bin/bash
194
 #!/bin/bash
195
+
195
 echo "xxl-job: hello shell"
196
 echo "xxl-job: hello shell"
196
 
197
 
197
 for item in 1 2 3
198
 for item in 1 2 3
198
 do
199
 do
199
-echo "shell : $item"
200
-sleep 1s
200
+    echo "shell : $item"
201
+    sleep 1s
201
 done
202
 done
202
 
203
 
203
 echo "Good bye!"
204
 echo "Good bye!"
216
 for num in range(1, 3):
217
 for num in range(1, 3):
217
 	time.sleep(1)
218
 	time.sleep(1)
218
 	logging.info('python :' + str(num) )
219
 	logging.info('python :' + str(num) )
220
+
219
 logging.info('Good bye!')
221
 logging.info('Good bye!')
220
 </textarea>
222
 </textarea>
221
 					
223