我想获得带有myvob/project/
命令的评论为“Requirement X
”的“cleartool
”元素列表。
有可能吗?
答案 0 :(得分:2)
我认为没有为此准备好“cleartool find”查询。
您可以将一个cleartool find与exec部分结合起来,用它们的全名和注释来描述每个元素,然后grep查看相关注释。
注意:示例语法包括版本和注释的格式:
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>"