我正在编写批处理和 bash 脚本来自动化一些 websphere 任务。
我需要将 myscipt.jy 的退出代码返回到调用脚本 jython 脚本
#----------myscipt.jy-----------
#I am testing exit status
import sys;
sys.exit(1)
批处理脚本是
REM superduper.cmd
profiles\myprofile\bin\wsadmin -lang jython -f myscript.jy
echo myscript.jy exited with %ERRORLEVEL%
有任何想法吗?