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
请让我知道如何实现这一目标。
答案1
尝试这个,
find /some/path/ -iname "*.zip" -exec cp -f /path/to/dummy.zip {} \;
更改/some/path
为您要搜索 zip 文件的文件夹。
警告:这将删除下面所有 zip 文件的原始内容
/some/path
。