6

By mistake I have created a file named : --append.

How do I delete it?

Simply entering the usual command, rm -f --append, doesn't work.

John
  • 219

1 Answers1

12

Try this in-order to remove the file:

rm -- --append
neuron
  • 1,976