gpt4 book ai didi

bash - 在 Bash shell 中锁定 ‘set +e’

转载 作者:行者123 更新时间:2023-12-05 04:06:06 27 4
gpt4 key购买 nike

有没有一种方法可以锁定 Bash shell 中的“set +e”,使得调用“set -e”的源脚本无法覆盖?

还需要子 shell 仍然能够“set -e”。

这可能吗?

最佳答案

用一个函数临时覆盖内置的set命令:

#!/bin/bash

set() { [[ "$1" != "-e" ]] && command set "${@}"; }
# source your script here
unset set # if you want to use set -e again

关于bash - 在 Bash shell 中锁定 ‘set +e’,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50240534/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com