shell sed 命令如何实现在查找匹配到的行之前插入内容

2020-04-05 11:22发布

问题:

请问如何用在 linux 中通过 sed 命令实现下面的需求?

在下面的内容之前

= Gon::Base.render_data(nonce: content_security_policy_nonce)

插入下面的内容

%style{type: "text/css"}
  code { color: #c0341d; background-color: #fbe5e1; }

回答1:

搞定了,强大的 sed

sed -i '/^\s*= Gon::Base.render_data.*/i \ \ %style{type: "text/css"}\n    code { color: #c0341d; background-color: #fbe5e1; }\n' _head.html.haml


标签: shell