Delete a batch of files using a regular expression with the find command

 
find . -regextype "egrep" \
       -iregex './sometext_[0-9][13579]_C.*' \
       -exec rm {} \;

 

Related Snippets

•  Rename a batch of files
•  Examples of the wget command
•  Examples of the curl command