How to delete a file with a bad file name? [duplicate]

Solution 1:

You can delete it using Linux:

rm ./Movie\ \*\*\ 480p\ \*\*\ NEW.wmv

Using \ you can escape the spaces and the asterisks, and adding ./ will make rm remove the file even if there's any - on the filename.