我尝试使用包含字符串lineinfile
的{{1}}添加一行到文件。
让我们说:\"
问题是字符串是仅转义hello \" world \"
字符的方法。
任何想法?
编辑:
我尝试了"
和\\\"
没有运气
答案 0 :(得分:0)
将您的整个line
放在单引号中就可以了。
- hosts: all
tasks:
- name: ensure escaped hello world
lineinfile:
dest=/home/vagrant/hello_world
line='Hello \" world\"'
结果:
$ cat /home/vagrant/hello_world
Hello \" world\"