I can do the following in Linux:

find . -name "*.zip" | xargs rm

What is its equivalent in Windows (XP, if it matters)?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Have you tried

del /S /P *.zip
link|improve this answer
Just beat me by a 1 minute. (techie-buzz.com/tips-and-tricks/…) offers help and recommends del /S command. – secureBadshah Sep 12 '11 at 11:22
feedback
  1. My way: install Cygwin, find . -name '*.zip' -delete
  2. User way: Find '.zip' in Total Commander, "feed to list box", select all, delete.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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