Bash 中 set -e 的用法

Bash 中 set -e 的用法

在这个脚本中

#!/bin/sh
set -e
exec svlogd ./main

你知道 set -e 的作用吗?我搜索了 man 和谷歌但没有运气

答案1

你需要提高你的谷歌能力。

help set:

-e  Exit immediately if a command exits with a non-zero status.

相关内容