我正在构建一个具有以下if功能的 Shell 脚本:
if
if jarsigner -verbose -keystore $keyst -keystore $pass $jar_file $kalias then echo $jar_file signed sucessfully else echo ERROR: Failed to sign $jar_file. Please recheck the variables fi ...
我希望在显示错误消息后完成脚本的执行。我怎么能做到这一点?
你在找exit吗?
exit
这是最好的 bash 指南。 http://tldp.org/LDP/abs/html/
在上下文中:
if jarsigner -verbose -keystore $keyst -keystore $pass $jar_file $kalias then echo $jar_file signed sucessfully else echo ERROR: Failed to sign $jar_file. Please recheck the variables 1>&2 exit 1 # terminate and indicate error fi ...