在 Subversion 存储库中递归查找包含文本的文件
如何递归地运行整个颠覆存储库并列出包含特定文本的文件?
How can I recursively run through an entire subversion a repository and list files containing a specific text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
ack
(站点:http://betterthangrep.com/< /a> ,我喜欢这个域名;) ):它默认忽略
.svn
并在多个平台上运行,包括 Windows,作为 Perl 程序。使用示例:
查找 C 程序中的所有
#include
文件:见证示例:
You could use
ack
(site: http://betterthangrep.com/ , I like the domain name ;) ):It does ignore the
.svn
by default and runs on multiple platform, including Windows, being a Perl program.Usage Example:
Find all
#include
files in C programs:Testimonial example:
如果您安装了 Subversion 客户端,那么您将能够使用此命令获取所有版本化文件:
然后从此列表中提取文件(
Path :
字段),然后创建grep
(像这个)提取正确的文件。If you have a subversion client installed, then you will be able to grab all the versioned files with this command :
then extract from this list the files (
Path :
field) and then make agrep
(like this one) to extract correct files.