如果 bash 命令返回某个值,我想摆脱厨师。
execute 'noop' do
command <<-EOH
cmd_output=$(echo "test")
if [ "$cmd_output" == "test" ]; then
return
fi
EOH
end
我遇到了一个错误return: can only 'return' from a function or sourced script
获取 bash 命令的输出然后基于此返回的最佳方法是什么?