我在文件“ us”前有空格的文件中有以下文本
proxies:
us: ["http://aa.bb.cc.dd","http://ee.ff.gg.hh","http://ii.jj.kk.ll"]
我想在行尾插入一个新IP,输出应为以下
proxies:
us: ["http://aa.bb.cc.dd","http://ee.ff.gg.hh","http://ii.jj.kk.ll,"http://{{ new_server_ip }}]
我无法获得所需的输出。请帮助我提供代码
lineinfile:
path: test.sh
regexp: "^\s*(us:)"
line: 'http://{{ new_server_ip }}'