前端之家收集整理的这篇文章主要介绍了
使用set -e运行bash函数而不退出shell,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
考虑以下
功能
function current_dir {
set -e
git foobar
echo "I will not print this,because git foobar returned a non-zero exit code"
}
现在,当我获取函数并尝试在我的shell中调用它时,它不仅退出函数,还退出shell本身.
如何避免这种情况?
如果您不需要在当前shell中执行该
函数(例如,它没有设置任何需要对
调用者可见的参数值),则可以使
函数体成为子shell,而不是命令组:
current_dir () (
set -e
git foobar
echo "I will not print this,because git foobar returned a non-zero exit code"
)
原文链接:https://www.f2er.com/bash/384069.html