What command do I need to use to remove a file called `-rf`?
unlink -rf
Or
rm -- -rf
Another option:
rm ./-rf
... asuming your current directory is the one where the file resides.
Alternatively you can always edit the directory its in and remove the file that way.
vim .
and then just delete the line with the file on it (using D, dd won't work).