我只有一个包含内容的食谱:
echo_example = shell_out("echo "line 1\nline 2")
if echo_example.exitstatus == 0 && echo_example
node.rm('test')
node.set['test'] = [echo_example.stdout.chomp]
end
用刀输出的属性是:
"test": [
"line 1\nline 2"
]
如何使用下面的刀获得此输出?
"test": [
"line 1",
"line 2"
]
谢谢