Reputation: 8260
On Unix in a dynamic view, I run the following to find checked out files:
cleartool lsco -s -cview -me -avobs
In a windows snapshot view, this use of -avobs doesn't appear to work. On a vob by vob basis I can run:
cleartool lsco -s -cview -me -all
which returns the checked out names to me for that vob.
Is there a way to tell what vobs have checkouts in a Windows snapshot view? (not sure if Windows vs. Unix is a factor here). I'd like to script the lsco, executing it in each of the vobs in question.
Upvotes: 1
Views: 8012
Reputation: 1323553
Considering each vobs is a direct child directory of the root directory of your snapshot view, all you need to do is to:
This is consistent with the issue around the usage of "-cview -avobs
" mention in this technote:
Local fix
Do not use
lsco -cview -avobs
.
You needs to runcleartool lsco
while cd'd in each Unix vob in the Windows snapshot view.
Upvotes: 2