I\'m having trouble using the regex of the find command. Probably something I don\'t understand about escaping on the command line.
find
Why are these not the sa
Note that -regex depends on whole path.
-regex
-regex pattern File name matches regular expression pattern. This is a match on the whole path, not a search.
You don't actually have to use -regex for what you are doing.
find . -iname "*[0-9]"