如何在cleartool中获得活动的完整描述? [英] How to get a full description of an activity in cleartool?

查看:70
本文介绍了如何在cleartool中获得活动的完整描述?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用ClearQuest将查询导出到包含有关我所有开发人员活动信息的csv。但是,说明被截断了。是否有cleartool命令可以输出给定活动的完整描述?

I used ClearQuest to export a query to a csv containing information about all my developer activities. However, the description is truncated. Is there a cleartool command that can output the full description of a given activity?

推荐答案

您可以使用...

foreach act ( `cleartool lsact -s` )    
    set changeset = `cleartool lsact -fmt "%[versions]p" $act`
    echo $changeset | tr ' ' '\n' >> $tmpoutput
end

foreach line ( "`cat $tmpoutput`" ) 
    set file=`echo $line | sed -e "s|\(.*\)@@.*|\1|"`
end

此列表列出了活动的更改集(@@除外)。

This list the changed set for the activity (excluding @@).

来源:

http: //www.snip2code.com/Snippet/961/list-files-changed-in-clearcase-ucm-stre?fromPage=1

这篇关于如何在cleartool中获得活动的完整描述?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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