Somehow a file named -]???????q got created on my terminal. I tried rm -f "-]???????q" (in double quotes), but it did not get deleted. (Error:: rm: invalid option -- ]). How do I delete it?

link|improve this question
feedback

3 Answers

up vote 6 down vote accepted

For example, with:

rm -- '-]???????q'

Where -- means: "stop parsing options".

link|improve this answer
thanks, works fine! – JP19 Jan 6 '11 at 15:49
Indeed, I ran into a similar problem not even thinking about - being a switch. I swear I spent like 2 hours trying to figure it out. – Jeff F. Jan 6 '11 at 17:11
Many applications use --, guess it's a kind of de facto standard due to the getopt function. – cYrus Jan 6 '11 at 18:42
feedback

You can either use the file name with rm or the inode number with find like :

rm -- -]???????q
# or
  -> ls -i                                                                                                                         
47984689 blah.ui  47983771 __init__.py  
47983773 testpy.e4p  47985161 Ui_blah.py

  -> find -inum 47983773                                                                                                           
./testpy.e4p

  -> find -inum 47983773 -exec rm -i '{}' \;
#or
  -> find -inum 47983773 -delete
link|improve this answer
feedback

or

rm ./"-]???????q"

double quotes prevent the shell from expanding interrogation marks; for example, if you had another file called -]foobar.q:

$ touch ./"-]???????q" ./-]foobar.q
$ echo ./-]???????q
./-]foobar.q ./-]???????q
link|improve this answer
+1: Right, the quoting is desirable. – cYrus Jan 6 '11 at 18:44
Oh. I put the quotes, but was missing the ./ – JP19 Jan 7 '11 at 4:35
feedback

Your Answer

 
or
required, but never shown