1

We have used 'cleartool lsbl -fmt ...' to get baselines on our stream. We could use other ccase_fmt targets, but we want more than just the latest/most recent, and we have no need for the foundation baselines.

I would like to use 'cleartool find -kind baseline -version "{created_since(...)}" ...' to extract the most recent baselines and then do post-processing as retrieving all of them via 'cleartool lsbl -fmt ...' is taking progressively longer as the projects proceed.

How can I tell 'cleartool find' to give me all baselines on a given stream since time_t?

1 Answers1

0

The easiest thing to do is to list all baselines on a stream (as I did in this answer):

cleartool lsbl -fmt "%n %d\n" -stream stream:mystream@\mypvob

They are sorted from the oldest to the newest, as I mentioned in "cleartool: How to list all labels in a stream chronologically?".

(you can limit that for a given component, as in this answer)

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