The easiest way I have found to remove files with special characters in the name is to do the following: do an 'ls -i' and get the inode number type 'find . -inum # -exec rm {} \;' where # is the inode number. Works every time...