Linux
遞歸地匿名化文件夾中的 Zip 文件
我
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
。