有人有一个很好的 awk 来输出 svn 日志吗?

发布于 2024-10-18 14:20:42 字数 712 浏览 1 评论 0原文

我想搜索提交消息中的字符串,很容易将 svn log 通过管道传输到 grep,但因为消息和 rev 位于不同的行,所以有点复杂。

svn 日志 ./ | searchSvnMessages.awk artf29999

------------------------------------------------------------------------
r9303 | myuser | 2011-02-22 15:13:47 -0800 (Tue, 22 Feb 2011) | 1 line

artf29999: Adjusting Skin
------------------------------------------------------------------------
r9302 | myuser | 2011-02-22 14:11:06 -0800 (Tue, 22 Feb 2011) | 1 line

artf29999: Adding skinning.
------------------------------------------------------------------------
r800 | myuser | 2011-02-22 09:44:36 -0800 (Tue, 22 Feb 2011) | 1 line

artf29999: Adding functionality.

我希望其他人已经完成了我可以利用的肮脏工作?

I want to search the commit messages for a string, it's easy to pipe svn log to a grep, but because the message and the rev are on separate lines, it's a little more complicated.

i.e.

svn log ./ | searchSvnMessages.awk artf29999

------------------------------------------------------------------------
r9303 | myuser | 2011-02-22 15:13:47 -0800 (Tue, 22 Feb 2011) | 1 line

artf29999: Adjusting Skin
------------------------------------------------------------------------
r9302 | myuser | 2011-02-22 14:11:06 -0800 (Tue, 22 Feb 2011) | 1 line

artf29999: Adding skinning.
------------------------------------------------------------------------
r800 | myuser | 2011-02-22 09:44:36 -0800 (Tue, 22 Feb 2011) | 1 line

artf29999: Adding functionality.

I was hoping that someone else had done the dirty work that I could piggyback on?

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

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

发布评论

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

评论(2

打小就很酷 2024-10-25 14:20:42

如果您只需要搜索每个日志条目的第一行并且您使用的是 GNU grep,则可以执行 svn log 。 | grep -B2 artf29999。

If you only need to search the first line of each log entry and you are using GNU grep, you can do svn log . | grep -B2 artf29999.

甜扑 2024-10-25 14:20:42

您还可以使用 svn log ... --xml 来获取 xml 输出,这可能更容易解析。或者,您可以使用各种脚本绑定来获取更丰富的对象,而不是解析。

You can also use svn log ... --xml to get xml output, which might be easier to parse. Alternatively you can use various script bindings to get richer objects instead of parsing.

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