我有一个python makefile。我可以从我的bash脚本运行它的命令,如下所示
本地make_lint_output =“”make_lint_output =“$(make test-unit 2>& 1)”echo“$ {make_lint_output}”
本地结果= $? …
echo 正在成功,因此返回0.您必须在运行可能破坏的另一个命令之前捕获返回代码 $? (在回声之前)。
echo
$?