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.

There are a lot of exe files in my pen-drive (reside in different directories).

How can I delete all the files using Linux command?

share|improve this question

1 Answer

up vote 2 down vote accepted

Removes all exe files in the current directory tree.

find . -name "*.exe" -delete

If your pen drive has more than 2 directory , then you need to run this command in each directory.

share|improve this answer
1  
To be more specific: the "." means the current directory, so make sure you are in the the directory for the pendrive. – Michael Ozeryansky Jun 25 '12 at 5:08

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.