我在ClearCase中有一个集成流。我想获得一个列表,其中包含未标记为过时的所有子流的名称。我应该运行哪个命令?
答案 0 :(得分:2)
一个简单的cleartool lsstream -tree myIntStream@\myPvob
就足够了
(Unix:cleartool lsstream -tree myIntStream@/vobs/myPvob
)
如cleartool lsstream
中所述:
默认
仅列出非过时的流。
这也列出了流的所有活动。我认为有必要传递一些fmt选项。我只喜欢溪流的名字。
正如我在" cleartool lsstream -tree
get only list of child streams" (使用fmt_ccase
):
cleartool describe -fmt "%[dstreams]CXp" stream:myStream@\myPVob
OP neves提到in the comments只有名字:
cleartool describe -fmt "%[dstreams]p" stream:myStream@\myPVo