gpt4 book ai didi

linux - Ansible:是否可以搜索替换单个单词

转载 作者:IT王子 更新时间:2023-10-29 00:20:06 25 4
gpt4 key购买 nike

lineinfile模块,它取代整行。

如果行很长,我必须再次重复整行。

假设我想替换文件中的单个单词:

#abc.conf
This is my horse

这是剧本:

 - lineinfile: dest=abc.conf
state=present
regexp='horse'
line='This is my dog'
backup=yes

有什么方法可以实现类似sed 's/horse/dog/g' 的东西吗?

最佳答案

新模块replace1.6 版本开始可用:

- replace:
dest=abc.conf
regexp='horse'
replace='dog'
backup=yes

关于linux - Ansible:是否可以搜索替换单个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22398302/

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