I would like to describe all batch AND executable files with a cleartool command. I can do this for one type of file :
cleartool find "Z:\PATH" -name *.bat -exec "cleartool describe %%CLEARCASE_PN%%"
But I can't find any way to do it for both types of files. I could duplicate the line, but this is not a good solution because of poor performance. I have tried surrounding with single or double quotes, with pipe or double pipe, but nothing works (-name "*.bat, .exe", -name (.bat || *.exe), etc.). Is there any solution ?
Thanks