Deleting files with weird names

Sometimes files can have weird names that are hard to type when you want to delete them. In those cases you can use the following command to interactively remove files. rm will then ask you for each file whether you want to remove it.

$ rm -i -- *

via JimR@superuser.com