0条评论
还没有人评论过~
请问如何用在 linux 中通过 sed 命令实现下面的需求?
在下面的内容之前
= Gon::Base.render_data(nonce: content_security_policy_nonce)
插入下面的内容
%style{type: "text/css"}
code { color: #c0341d; background-color: #fbe5e1; }
搞定了,强大的 sed
sed -i '/^\s*= Gon::Base.render_data.*/i \ \ %style{type: "text/css"}\n code { color: #c0341d; background-color: #fbe5e1; }\n' _head.html.haml