如何获取文件名和修订号作为列表?
如何从指定文件夹开始以列表形式获取文件名和修订号?
How to get file name and revision number as a list starting from a designated folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从指定文件夹开始以列表形式获取文件名和修订号?
How to get file name and revision number as a list starting from a designated folder?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以在项目的基本文件夹中使用
cvs status
并使用 grep 查找相应的行:You can use
cvs status
at the base folder of your project and grep for the appropriate line:cvs status
将为每个文件提供以下形式的信息:(输出来自 CVSNT;普通 CVS 不会显示提交 ID 和合并点)
您可以编写脚本来提取并重新格式化该信息。
cvs status
will give you that information in the following form per file:(output is from CVSNT; Commit ID and Mergepoint will not be shown by vanilla CVS)
You can write a script to extract and reformat that information.