Windows 相當於“find . -name "*.zip" | xargs rm”

Windows 相當於“find . -name "*.zip" | xargs rm”

我可以在 Linux 中執行以下操作:

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

Windows(XP,如果有的話)中的等效項是什麼?

答案1

你有沒有嘗試過

del /S /P *.zip

答案2

  1. 我的方法:安裝Cygwin,find . -name '*.zip' -delete
  2. 使用方式:尋找'在 Total Commander 中,“饋送到列錶框”,選取全部,刪除。

相關內容