Answers for "how to extract sequential files multiple zip files at once"

0

how to extract sequential files multiple zip files at once

On Windows:
copy /B input.z* output.zip

Or Linux (or if you've got Unix command line tools on Windows using Cygwin or GnuWin32):
cat input.z* > output.zip
Posted by: Guest on April-04-2022

Code answers related to "how to extract sequential files multiple zip files at once"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language