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'm trying to recursive erase all files that begin with "._" (aka mac dot files) on my server using SSH. The files are listed with a ls -a but this won't work:

rm -rf ._*

I know there's a way. Mind to share? Cheers!

share|improve this question

3 Answers

up vote 4 down vote accepted

find . -name ._\* -print0 | xargs -0 rm -f

I don't see what this has to do with "ssh", other than the fact that it means you probably don't have a graphic shell.

share|improve this answer
Yeap, I was removing these files manually via FTP but the thing have toooo many subdirectories so a recursive remove via ssh is THE thing to do :) Thank you anyway, is done now, you saved me HOURS of browsing and clicking like a goddamn animal. Cheers. – Antonio Max Dec 30 '11 at 15:14
find . -name ._\* -exec rm -f {} \;

by the way rm -rf is for removing directories recursively

share|improve this answer
the last semicolon is backslashed. I edited the command. – Basile Starynkevitch Dec 30 '11 at 15:14
find . -name ._\* -type f -delete

Specify that it's files and just call the find-delete on item directly.

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.