如何在cleartool中查看权限
How to see permissions in cleartool
我试过 ls 命令,但它实际上并没有显示 VOB 元素的权限。我不明白要使用什么命令才能查看权限。有人可以帮助我吗?
一般可以使用cleartool describe
:
cleartool descr -l yourFile
# for the vob itself:
cleartool descr -l vob:\vobtag
第二个命令很重要,因为它会列出与 vob 关联的主要和次要组:您必须将 CLEARCASE_PRIMARY_GROUP
设置为这些组之一才能访问 vob。
使用fmt_ccase
,您还可以访问文件系统对象权限:
%[permissions]p
File system objects: Displays the object's permissions using the standard "rwx
" notation.
cleartool desc -fmt "%[permissions]p" .
我试过 ls 命令,但它实际上并没有显示 VOB 元素的权限。我不明白要使用什么命令才能查看权限。有人可以帮助我吗?
一般可以使用cleartool describe
:
cleartool descr -l yourFile
# for the vob itself:
cleartool descr -l vob:\vobtag
第二个命令很重要,因为它会列出与 vob 关联的主要和次要组:您必须将 CLEARCASE_PRIMARY_GROUP
设置为这些组之一才能访问 vob。
使用fmt_ccase
,您还可以访问文件系统对象权限:
%[permissions]p
File system objects: Displays the object's permissions using the standard "
rwx
" notation.
cleartool desc -fmt "%[permissions]p" .