1

I already know a non-elegant solution:

  1. get list of all views of stream with cleartool lsstream -l
  2. find the view with Server host: *** equal to machine name by running cleartool lsview -l for all these views

It might be quite slow, because there are many views...

Is there a faster alternative?

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250

1 Answers1

0

You could reverse your sequence and:

  • first list all views for a specific hostname: without the -l option, it is quite fast

    cleartool lsview -host <hostname> -quick
    
  • intersect that list with the views listed by cleartool lsstream -l.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250