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
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 ...