我有一个使用 Clearcase 管理的目录。有没有办法在表中获取 IBM Clearcase 中的目录列表?
问问题
107 次
1 回答
0
您可以尝试使用cleartool find
以获取目录列表(尽管您仍然需要将该命令的输出放入表中)。
您需要在 ClearCase 视图中执行它。
cd /path/to/view/aVob/aDirectory
cleartool find . -type d -print
' -type d
' 会将结果限制为仅目录。
于 2013-06-05T21:14:41.937 回答