cara mengekstrak file berurutan beberapa file zip sekaligus

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
coding monk