获取对元素具有特定“要求X”注释的元素列表

时间:2010-10-25 09:53:55

标签: clearcase

我想获得带有myvob/project/命令的评论为“Requirement X”的“cleartool”元素列表。

有可能吗?

1 个答案:

答案 0 :(得分:2)

我认为没有为此准备好“cleartool find”查询。

您可以将一个cleartool find与exec部分结合起来,用它们的全名和注释来描述每个元素,然后grep查看相关注释。

请参阅additional find examples

通过搜索VOB中所有元素的所有版本来查找注释中的特定字符串。

  

注意:示例语法包括版本和注释的格式:

     

UNIX / Linux的:

cleartool find -all -ver "! lbtype(<non-existing label>)" \
-exec 'cleartool desc -fmt "Version: %n\tComment: %c\n\n" $CLEARCASE_XPN' \
| grep <the string you are looking for>
  

视窗:

cleartool find -all -ver "! lbtype(<non-existing label>)" \ 
-exec "cleartool desc -fmt \"Version: %n\tComment: %c\n\n\" %CLEARCASE_XPN%" \ 
| findstr "<the string you are looking for>"