Linux

遞歸地匿名化文件夾中的 Zip 文件

  • September 14, 2018

zip在父文件夾和子文件夾中有多個文件。我想zip files用一個虛擬的 zip 文件替換所有這些。換句話說:

* the original zip file content being replaced by the dummy zip file  
* the original zip file name will remain as it is  
* the origin zip file path will remain as it is  

請讓我知道如何實現這一目標。

試試這個,

find /some/path/ -iname "*.zip" -exec cp -f /path/to/dummy.zip {} \;

切換/some/path到您想要搜尋 zip 文件的文件夾。

警告:這將刪除以下所有 zip 文件的原始內容/some/path

引用自:https://unix.stackexchange.com/questions/469029