sed 命令无法在 yaml 文件中查找和替换内容?
Posted
技术标签:
【中文标题】sed 命令无法在 yaml 文件中查找和替换内容?【英文标题】:sed command is not working to find and replace content in yaml file? 【发布时间】:2021-12-15 22:33:47 【问题描述】:我在 yaml 文件 des.yaml 中有以下内容
simulator:
enabled: false
我想通过如下方式启用模拟器:
simulator:
enabled: true
使用 sed 命令
我尝试使用 sed 命令,但它无法正常工作:
sed -i 's|simulator\:\n enabled\: false|simulator\:\n enabled\: true|' des.yaml
命令没有抛出任何错误。
请帮忙
【问题讨论】:
【参考方案1】:这可能对你有用(GNU sed):
sed -i '/simulator:/n;/enabled:/s/false/true/' file
匹配simulator:
,打印该行并获取下一行。
匹配enabled:
,将false
替换为true
。
【讨论】:
【参考方案2】:虽然sed
之类的程序可以解决问题,但还是应该使用合适的工具,这里:https://github.com/mikefarah/yq/releases/
yq eval '.simulator.enabled=true' des.yaml
【讨论】:
【参考方案3】:使用sed
$ sed -i '/simulator/ N;s/\(enabled: \).*/\1true/' input_file
如果找到匹配simulator
,则移动到下一行,如果匹配enabled
存在,则值将更改为true。
输出
simulator:
enabled: true
【讨论】:
以上是关于sed 命令无法在 yaml 文件中查找和替换内容?的主要内容,如果未能解决你的问题,请参考以下文章