I have a directories that I manage using Clearcase. Is there a way to get a list of directories in IBM Clearcase in a table?
Asked
Active
Viewed 116 times
1 Answers
0
You can try and use cleartool find
in order to get a list of directories (you would still need to put the output of that command in a table though).
You need to be in a ClearCase view to execute it.
cd /path/to/view/aVob/aDirectory
cleartool find . -type d -print
The '-type d
' will limit the results to directories only.

VonC
- 1,262,500
- 529
- 4,410
- 5,250
-
Thanks for the answer! But can you help me find the view location in windows? There are too many folders and I am not sure where the view is located. What is the default location of the view? – amir shadaab Jun 18 '13 at 16:38
-
@amirshadaab for dynamic views, `m:\aView` (if the view is started: `cleartool startview aView`). Snapshot views can be anywhere: make a search for `.view.dat` hidden files: see http://stackoverflow.com/a/7917396/6309. See also http://stackoverflow.com/a/2925378/6309. – VonC Jun 18 '13 at 16:51