I am trying to find all the files whose name contains exactly 14 digits (I'm trying to match a timestamp in the filename). I'm not sure how to get the GNU find regexp syntax for repetitions right.
I've tried find -regex ".*[0-9]{14}
and find -regex ".*[0-9]\{14\}
, neither of these turns up any results. Can you help me with the syntax?