I would need a ClearCase query command to be able to find all versions of elements in a ClearCase VOB that have labels applied after a certain date
I have tried the following commands, but I hope there is a better way, and also to avoid redundancies in the listings when an element has two or more labels applied after the selected date
cleartool lstype -kind lbtype -short -invob MY_VOB > /tmp/All_VOB_labels.txt
for SOME_LABEL in $(cat /tmp/All_VOB_labels.txt )
do
cleartool find . -version "lbtype($SOME_LABEL)" -exec "cleartool lshistory -since 28-Feb -minor $CLEARCASE_XPN "
done
Any help appreciated, TIA, Javier.