Decompress multiple compressed files method: first merge, and then decompress
Windows:
Win + R, enter CMD, then enter the CMD terminal, CD to the compressed file directory, and then merge with the following command.
copy /B xxx.zip.001 + xxx.zip.002 + xxx.zip.003 1.zip
Decompress the generated 1. Zip
Note: the space and + sign in the middle
Linux:cat xxx.tar.gz* >& gt; xxx.tar.gz
Decompress the generated xxx.tar.gz:
tar -zxvpf xxx.tar.gz
Note: the compressed name corresponding to the transposition of XXX