I am trying to find all the files in a folder that ends with any of this expressions:
"00.png" or "25.png" or "50.png" or "75.png"
I am using the command
find . -type f -name '(*00.png|*25.png|*50.png|*75.png)'
with no success, what is the correct way to do it?