在评论中搜索提交的文件
CVS 中有没有一种方法可以搜索 cvs 存储库中注释中具有特定关键字的所有文件?
Is there a way in CVS to search all the files in a cvs repository having a particular keyword in the comment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不直接;您可以使用
cvs log
获取文件列表,将它们写入新文件fileList
,然后使用xargs -i grep /dev/null搜索此列表“{}”<文件列表
。奇怪的“/dev/null”是强制 grep 打印文件名。
Not directly; you can use
cvs log
to get the list of files, write them into a new filefileList
and then search this list withxargs -i grep /dev/null "{}" < fileList
.The odd "/dev/null" is to force
grep
to print file names.