On ClearCase I use the following command to find all the elements that have the foo attribute with the value "yes":
cleartool find . -ver 'foo == "yes"' -print
Is there a way to retrieve in a single command the elements that have the foo attribute with the value either "yes" or "maybe"?
The
||operator should be supported here:See this more elaborate example for instance:
The section “logical operator” details how they are used: