标签: bash exit shebang
使用以下shebang作为我的bash脚本:
#!/bin/bash -e
我希望脚本在非零状态退出时显示退出代码。我怎么能这样做?
答案 0 :(得分:0)
将此添加到您的脚本中:
trap 'echo $?' EXIT