How to find the extracted files as a snapshot of a cell (window)?

On Unix in dynamic view, I run the following to find the extracted files:

cleartool lsco -s -cview -me -avobs 

In a window snapshot view, this use of -avobs does not work. On a vob based vob, I can run:

 cleartool lsco -s -cview -me -all 

which returns the names checked for me for this vob.

Is there any way to find out which voob have checks in the view of Windows snapshots? (not sure if Windows vs. Unix is ​​a factor here). I would like to script lsco by running it in each of the wobblers in question.

+1
source share
1 answer

Given that each vobs is a direct child directory of the root directory of your snapshot, all you have to do is:

  • list each direct child directory (whose name is vob)
  • run your cleartool lsco in each of these directories.

This is consistent with the problem of using " -cview -avobs " in this technology :

Local fix

Do not use lsco -cview -avobs .
You need to run cleartool lsco while cd'd on every Unix vob in a Windows snapshot view.

+2
source

Source: https://habr.com/ru/post/1201336/


All Articles