|
how to delete file which name start with minus sign?
I'm wondering how to delete a file created by error whose name start with a minus sign (such as "-b")?
------
rm -f "-b"
rm: invalid option -- b
Try `rm --help' for more information.
------
So far I used the graphic file manager to do it, but I'd to know if there is a way with the command line?
Many thanks in advance!
Guillaume
NB. Such a file can be easily created using emacs for instance
|