prescript: I am not sure where this question belongs
i cant say it works on windows but from my understanding this regex is correct and how i would write it (except maybe the ^ at the beginning)
from http://www.velocityreviews.com/forums/showpost.php?p=382944&postcount=3
^.+\.((jpg)|(gif)|(exe))$
When i run
find -regex '^.+\.((jpg)|(gif)|(exe))$'
my exe does not show up when i write
find -regex '^.+\.exe$'
It does. Why doesnt find -regex want to use () or (()|())? I always thought that was valid for everything.