The title of the article is a bit around the mouth, like the execution of a command pipe, oh, because the server Setup problem can not upload too large compression package, this compression package can not continue to pass the breakpoint, all can only cut, in Windows under the use of software can be easily done, then in Linux how to solve it, It takes only two commands to handle it easily:
Let's see the first command:
Cat Jordan_shoes.tar.gz|split-b 100m–jordan_shoes.tar.gz.
Explain:
The-jordan_shoes.tar.gz is a currently existing compression package.
-100m is 100MB for each packet, and if the file is not divisible by 100MB, then the remaining small compressed package is generated
-jordan_shoes.tar.gz. The compression package at which the value is generated begins with the jordan_shoes.tar.gz. The default is Aa,ab ..., analogy.
How to decompress these small compressed packets, let it back to the beginning. Look at the next command.
Cat jordan_shoes.tar.gz.a* |tar ZXV
Explain:
Use cat to read all the compressed packets and use tar to extract them.