Reputation: 8269
Is it possible to append a file to an existing zip archive?
zip my_archive.zip folder_to_zip
then how to add another file to my_archive.zip
Upvotes: 0
Views: 121
Reputation: 78225
The default behaviour of zip is to add files:
zip zippy.zip *.sql
zip zippy.zip *.txt
zipinfo zippy.zip
... list of .sql and .txt files ...
Upvotes: 1