Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 shell 脚本“TC Shell Script”调用 java 程序,java 程序返回代表某些条件的状态代码。
java prgram 的返回码在 TC Shell 的预定义状态变量中被捕获。
返回代码被很好地捕获。
我面临的问题是当 java 程序返回或以 -1 和 System.exit(-1) 终止时,shell 脚本将 255 作为返回码。
所有正数都在 shell 脚本中被很好地捕获,只有 -1 被读取为 255。
我该如何解决这个问题。
可执行文件的返回码是一个小的正数。负数被转换为无符号数。没有办法在退出代码中输入负数。