gpt4 book ai didi

ansible - 带有前导空格的多行字符串

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

如何指定某些行上有前导空格的多行字符串?

如果我将变量定义为

multiline_str: |
foo
bar
baz

然后使用将其写入文件

- name: write multiline string
copy: content="{{ multiline_str }}" dest="/path/to/file"

那么目标文件内容为

foo
bar
baz

这里有什么技巧?

最佳答案

试试这个。

- name: write multiline string
copy:
content: "{{ multiline_str }}"
dest: /path/to/file

关于ansible - 带有前导空格的多行字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32260500/

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