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
.