标签: bash macos shell
我尝试使用以下命令在macOS中执行.sh脚本。 我想从命令的执行中获取返回代码
我只是试图从执行代码中返回值。
processCode=$(bash "test.sh") return "$processCode"
运行代码时,我收到错误消息为
"numeric argument required".
如何获取返回值并摆脱必需的数字参数
答案 0 :(得分:2)
您可以尝试以下方法:
bash "test.sh" processCode=$?