I\'m using ClearCase 7.1
I suspect we have some evil twins. I\'m looking for the most efficient way to find them out by scanning the VOB or any other ways. Is there
Unless you benefit from the integrated evil twin detection from ClearCase 8.0, the only way remains cleartool find command:
See "About Evil Twins, "locate" section" for some examples:
you run the following command from two views and compare the output (oid and pname), you can verify whether there is an evil twin situation on a file level:
Windows syntax example:
cleartool find . -type f -exec "cleartool describe -fmt \"%On, %n\n\" \"%CLEARCASE_PN%@@\""
Unix syntax example:
cleartool find . -type f -exec 'cleartool describe -fmt "%On, %En\\n" $CLEARCASE_PN@@'