cleartool触发器名称中的空间不正确导致我无法将其删除

我在VOB上创建了一个ClearCase触发器,但我在其名称的开头误加了空格。
现在,我无法删除它,也无法获取它的描述,因为另一个命令中不允许使用“空格”:

1)这是我的看到方式:

cleartool lstype -kind trtype -invob /vobs/xx/yy/
*--11-06T14:43  tttttt     trigger type " VER_CI_TRIGGER"*

2)尝试删除它或获取其描述:

cleartool describe trtype:VER_CI_TRIGGER@vob:/vobs/xx/yy
*cleartool: Error: Trigger type not found: "VER_CI_TRIGGER".*

cleartool describe trtype:' VER_CI_TRIGGER'@vob:/vobs/xx/yy
cleartool: Error: Trigger type not found: " VER_CI_TRIGGER".

我该如何解决?

e5557c 回答:cleartool触发器名称中的空间不正确导致我无法将其删除

先尝试使用cleartool rmtype

cleartool rmtype trtype:" VER_CI_TRIGGER@vob:/vobs/xx"
or
cleartool rmtype "trtype: VER_CI_TRIGGER@vob:/vobs/xx"

或者,如the OP Ahmed Shaboonthe comments中指出的那样:

cleartool rmtype -rmall "trtype: VER_CI_TRIGGER"

这将把它从所有的VOB中删除。

,

尝试使用cleartool lstype -kind trtype -fmt“%dn \ t%n \ n”来获取dbid,然后执行cleartool rmtype dbid :(上一条命令的编号)

本文链接:https://www.f2er.com/3147166.html

大家都在问