Combine multiple zip files (from windows) and unzip them in linux

Problem

You have received multiple zip files that were originally one big zip file, possibly from windows, and you want to put them back together and unzip them in linux.

Solution

So if your file names are for example called: file1.zip file2.zip etc, you can do the following:

cat file* > one_file.zip
unzip one_file.zip