I need to create a .zip file that can be unzipped by a very old version of PKZIP - version 2.50. I am currently using 7-zip to try this, but I can use a different zip program so long as it has a CLI.
Using 7-zip's default settings to create a ZIP file, PKZIP 2.50 gives the error "PKZIP: (W3) Warning! requires PKZIP version 78.8 to extract: filename.ext"
Using a newer version of PKZIP is not an option.
I believe that the switch I want is the -m switch, but I've tried variations on this and none lead to a file PKZIP can deal with, for example the following:
7z a -mx=9 -mm=Deflate '/path/to/file.zip' '/path/to/file'
What command should I be running to create a backwards-compatible zip file?