如何检查CVS标签是否存在?

发布于 2024-09-15 02:18:54 字数 98 浏览 3 评论 0原文

我需要编写一个 shell 脚本来检查存储库中是否存在某些 CVS 标记,并根据结果执行不同的操作。因此,我的问题是:如何检查 CVS 标记是否存在并在 shell 脚本中解析结果?

I need to write a shell script to check the existence of certain CVS tag in the repository, and do different things depending on the result. So hence is my question: How to check for CVS tag existence and parse the result in shell script?

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

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

发布评论

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

评论(1

季末如歌 2024-09-22 02:18:54

好吧,假设您拥有所有权限/凭据,您可以通过以下方式检查 cvs 标记:

cvs status <filename> | grep <tagname>

Well, assuming you have all the permissions/credentials, you can check for a cvs tag in the following way:

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