Reputation: 11
Is there a some sort of global search across all views and VOBS in ClearCase.
I need to find a file called "aaa
", and I don't know which vob contains it.
Is there a way to find it?
Upvotes: 0
Views: 437
Reputation: 1323593
cleartool find
has a –avobs
parameter to start with all the elements, branches, and versions in all the VOBs mounted on the local host.
So:
cleartool mount
)That is:
cd m:\myview
# or
cd /views/myview
cleartool find -avobs -name "aaa"
If there is an element named "aaa
" in one of the mounted vob, that query will find it.
Upvotes: 3