我正在尝试查找复合基线中关联的所有组件基线。
我可以使用以下方式实现它
cleartool desc -fmt %[rec_bls]CXp stream:My_Integration@\My_PVOB
(I would save the receommended baselines in some variable using powershell and replace it in next command)
cleartool describe -l baseline:"$Baseline"@\My_PVOB
是否可以将两个命令组合起来,以便我可以描述所有推荐的基线。
在上面的方法中,我被迫使用一些脚本来保存基线,然后在Cleartool命令中使用它。如果它可以在cleartool中组合使用,它将会很好用。
答案 0 :(得分:1)
我没有找到一种方法来管理复合基线与其成员基线之间的两个describe
。
我的解决方案(不满意)是bash(在Windows上通过msyswwin,使用类似msysgit的工具):
$ ct descr -l baseline:P_Summit_HUB_12_30_2011@\\Summit_HUB_pvob |grep "b)"|awk '{print "cleartool descr -fmt \"%[component]Xp %n\\n\" baseline:" $1 " >> afile"}'
我使用我需要的任何fmt
(这里只是与成员基线及其名称相关联的组件的名称)
然后我执行每个输出行,以便在“afile
”中获得最终结果。
您的PowerShell脚本方法肯定更好。
实际上,OP Samselvaprabu确认了以下PowerShell方法:
$Baselinefile="C:\Baseline.txt"
$project="MyComponents@\My_PVOB"
$pvob="@\My_PVOB"
# Find the list of Recommended baseline for the project
$Baselines=(cleartool lsproject -fmt "%[rec_bls]p" $project).split()
#Foreach baseline get the baseline and Component Name
foreach ($Bline in $Baselines) {
cleartool describe -l baseline:"$Bline"$pvob | Select-string -pattern "@\\My_PVOB)"| Out-File $BaselineFile -append
}