我想使用 ansible 输出一些以制表符作为分隔符的文本
这是任务片段
- name: Create output file
blockinfile:
block: |
Some text\tmore text
path: '{{ playbook_dir }}/output.txt'
create: true
电流输出
# BEGIN ANSIBLE MANAGED BLOCK
Some text\tmore text
# END ANSIBLE MANAGED BLOCK
期望的
# BEGIN ANSIBLE MANAGED BLOCK
Some text more text
# END ANSIBLE MANAGED BLOCK
YAML 块保留 TAB。您必须使用不会用空格替换 TAB 的编辑器。我在下面的例子中使用了vi 。str2的值是以“0”结尾的空格。str3的值是 2 个以“0”结束的 TAB(当然,此处的复制和粘贴删除了 TAB)。
给出了删节的