Hey n/hendrick... just wanted to reply a stupid answer. You have a directory thats full of duplicate files with different names. Most of the files have been labeled with like beta 1 beta 2 tags. You want to wipe out all the betas in your directory and just be left with the standard filename. You could go through in nautilus and manually delete each name but You have about 20,000 files. As you see this would take all day. You're wondering if there is an easier way to sort the files out of the directory that You want to keep (the files without tags) then just delete the rest....
Code:
find /your/path/to/directory/with/20000/files -name \*beta\* -exec mv {} /your/path/to/directory/to/delete/ \;
Then take 2 days to check that you do not need these files in /your/path/to/directory/to/delete/ and delete them.
Happy Penguins!