답변:
파일의 압축을 풀지 않아도 기존 파일을 업데이트 할 수 있습니다.
zip -u existing.zip file.txt
에서 zip
수동 :
update (-u)
Update existing entries if newer on the file system and add new files.
If the archive does not exist issue warning then create a new archive.
전체 폴더를 추가하려면을 추가하십시오 -r
.
여러 개의 zip 파일을 업데이트하려면 다음과 같이하십시오.
for z in *.zip; do
zip -u "$z" file.txt
done