需要脚本将行添加到 xml 文件

发布于 2024-12-04 08:05:29 字数 284 浏览 0 评论 0原文

对于包含以下行的所有文件:

 <class name="blahblahblah" foo="bar" fooz="baz">

我想在之后立即添加此行。

 <cache usage="read-write">

搜索的关键文本是

  <class name=

我可以为此访问 bash shell。

谢谢!

for all files containing a line like:

 <class name="blahblahblah" foo="bar" fooz="baz">

I would like to add this line right afterwards.

 <cache usage="read-write">

The key text for searching is

  <class name=

I have access to a bash shell for this.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅气尐潴 2024-12-11 08:05:29

试试这个:

sed -i '/<class name=*/ a\
<cache usage="read-write">' filename.xml

记住它只是一个命令。 -i 选项(--in-place)更改给定文件(就地)。

Try this one:

sed -i '/<class name=*/ a\
<cache usage="read-write">' filename.xml

and remember it is just one single command. The -i option (--in-place) changes the given file (in place).

神魇的王 2024-12-11 08:05:29

awk 是一个选择吗?

awk '{ print; if ($0 ~ "<class name=") print "<cache usage=\"read-write\">"; }'

(尽管我仍然强烈反对在 XML 文件上使用面向行的工具。从长远来看,一个不错的 XML 工具集可以为您省去很多麻烦。)

Is Awk an option?

awk '{ print; if ($0 ~ "<class name=") print "<cache usage=\"read-write\">"; }'

(Though I still strongly object to using line-oriented tools on XML files. A decent XML toolset saves you a lot of trouble in the long run.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文