Zip Command Line Qualifiers
/TRANSLATE_EOL={LF|CRLF}
Translate end-of-line to match what the target system expects:
LF = Convert <LF> to <CR><LF> (DOS)
CRLF = Convert <CR><LF> to <LF> (UN*X)
Used only for ASCII files.
/UNSFX
Strip off a self-extract stub that was pre-pended to the archive.
Notes:
/TRANSLATE_EOL can be used to tell Zip how to store the end-of-line for ASCII files when the .ZIP archive is intended for use on non-VMS systems.
The LF keyword causes Zip to store the end-of-line as a <CR><LF> (carriage-return, line-feed) pair. (DOS format)
The CRLF keyword causes Zip to store the end-of-line as a <LF> (line-feed). (UN*X format)
/UNSFX can be used to strip a self-extract stub or other pre-pended data off of an archive (archive_name.EXE).