Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a NULL file in a directory:

-rw-r--r--   1 blah1   blah2    83532 Nov  5 09:34   <can't see, but null here>              

How do I remove this? This is very annoying as it interferes with svn status.

Thanks for any help.

share|improve this question

2 Answers

up vote 2 down vote accepted

Delete interactively, saying no to all of the non-null files.

/bin/rm -i *

share|improve this answer

You can remove using the iNode value (using the -i option on ls command)

# ls -li
total 16
  30475938 -rw-r--r--   1 root     root           7 mar 19 10:29 -h
# find . -inum 30475938 -print
./-h
# find . -inum 30475938 -exec rm {} \;
# ls -li
total 0

In my blog, you have some examples -in Spanish- how to remove files with reserved characters. http://sparcki.blogspot.com.es/2010/03/como-eliminar-archivos-utilizando-su.html

Urko,

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.