如何以递归方式查找明文箱中不存在的元素? [英] How to find element(s) which are not present in the clearcase recursively?

查看:60
本文介绍了如何以递归方式查找明文箱中不存在的元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何递归查找在clearcase中不存在的元素,让我们说从项目根文件夹中我想知道不属于clearcase的文件列表。
有人可以帮我吗?

How to find element(s) which are not present in the clearcase recursively , let us say from project root folder i want to know the list of files which are not part of clearcase. Can some one help me on this?

推荐答案

首先,您需要在命令行界面中找到它们例如DOS会话:

First you need to find them through the command line interface, in a DOS session for instance:

for /F "usebackq delims=" %i in (`cleartool ls -r -nxn ^| find /V "Rule:" ^| find /V "hijacked" ^| find /V "eclipsed"`) do @echo "%i"

(请参阅有关如何在此 SO答案

(See the discussion on how to find private files in this SO answer)

然后,您可以将该命令添加到ClearCase菜单项中Windows资源管理器,遵循十本脚本文章中所述的过程。

另请参见以下 SO问题 a nd 那个例如菜单项命令(与您的问题无关,但提及了一些有关命令的提示)

Then, you can add this command to the ClearCase menu entries from the Windows explorer, follwing the process described in the ten ben scripts article.
See also this SO question and that one for example of menu entries commands (not related to your question, but mentioning a few tip about the commands)

这篇关于如何以递归方式查找明文箱中不存在的元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆