gpt4 book ai didi

ansible - 如何用缩进折叠多行 yaml 字符串

转载 作者:行者123 更新时间:2023-12-02 18:35:54 24 4
gpt4 key购买 nike

(在提供答案之前,请注意我已经尝试了 >>- 但没有成功)。

我正在尝试使用 ansible 变量。我想要一个格式良好的 SQL(伪 sql)查询折叠成没有换行符的行。

我的问题是,如果字符串有标识,> 运算符将不起作用...

---
- hosts: localhost
gather_facts: no
tasks:
- debug: var=foo
vars:
foo: >
select foo
from bar
where ok
join left
select baz
from boo

产品:

确定:[本地主机] => {
"foo": "从 bar\n 中选择 foo\n,其中 ok\n加入 left\n 从 boo\n 选择 baz\n\n\n"
}

而且我不想在文本中间看到 \n 。仅使用 YAML 功能可以解决这个问题吗?

最佳答案

是的,这是 YAML 最奇怪的“功能”。使用普通的多行标量代替:

---
- hosts: localhost
gather_facts: no
tasks:
- debug: var=foo
vars:
foo:
select foo
from bar
where ok
join left
select baz
from boo

关于ansible - 如何用缩进折叠多行 yaml 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54769350/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com