5
2
Please forgive my ignorance here. I've read the 7zip man page, and its not clear to me how to achieve the equivalent to zip -9 ...
. I think the man page of interest is -m (Set compression Method) switch.
What is the 7zip equivalent to zip -9 ...
for maximum compression?
In the larger picture, here is how it is being used on Windows. On Unix, Linux and OS X we use the zip
command:
7z.exe a -r -tzip cryptopp.zip cov-int
According to that man page it would probably be something like
7z a cryptopp.7z -r -mx=9 cov-int/*
– Seth – 2016-10-01T07:11:13.330