我正在尝试在 shell 脚本中创建一个函数,该函数接受一个命令并使用 eval 执行它,然后根据命令的成功进行一些后处理。不幸的是,代码的行为不像我预期的那样。这是我所拥有的:
#!/bin/sh
...
function run_cmd()
{
# $1 = build cmd
typeset cmd="$1"
typeset ret_code
eval $cmd
ret_code=$?
if [ $ret_code == 0 ]
then
# Process Success
else
# Process Failure
fi
}
run_cmd "xcodebuild -target \"blah\" -configuration Debug"
当命令 ( $cmd
) 成功时,它工作正常。当命令失败(例如编译错误)时,脚本会在我处理失败之前自动退出。有没有办法可以防止 eval 退出,或者我可以采取不同的方法来实现我想要的行为?