I created a big zip file in three parts on my Mac:
stuff.z01 stuff.z02 stuff.z03
I used the terminal zip command for this.
How can I unzip these on my Windows machine?
I created a big zip file in three parts on my Mac:
stuff.z01 stuff.z02 stuff.z03
I used the terminal zip command for this.
How can I unzip these on my Windows machine?
You can use the copy command to combine them on Windows:
Command Prompt
copy /b stuff.z* stuff.zip
PowerShell
& cmd.exe /c copy /b .\stuff.z* .\stuff.zip
The easiest way to extract the resulting archive to use the Extract All context menu option in the Explorer UI. Alternately, you can use PowerShell as in this example, Shell automation via command prompt as in this example, or a third-party solution like 7-Zip. The latter of which will also recombine archives for extraction IIRC.