使用set -e运行bash函数而不退出shell
发布时间:2020-12-16 01:25:35 所属栏目:安全 来源:网络整理
导读:考虑以下功能 function current_dir { set -e git foobar echo "I will not print this,because git foobar returned a non-zero exit code"} 现在,当我获取函数并尝试在我的shell中调用它时,它不仅退出函数,还退出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" ) (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |