I have a simple requirement of running a find command to list "ALL" checked-in versions between two labels.
Im running a below command
cleartool find a.cpp -ver "brtype(test) && lbtype(LABEL1) && ! lbtype(LABEL2)" -print
which is listing the output as
a.cpp@@maintest5
but LABEL1 is on maintest1 and LABEL2 is on maintest5 and Iam expecting that it would list all checked-in versions rather than just the latest version
any suggestions?