Zip folder into file partitions like RAR in Windows

It is easy to do so, simply zip the folder with system built-in zip tool in gui, then apply the following command to split the .zip file into multiple chunks:

zip FOLDER/ your-zip.zip
split your-zip.zip -b 32M YOUR_COMPRESSED_FILE_CHUNKS

To decompress in a target system:

cat YOUR_COMPRESSED_FILE_CHUNKS* > reassembled-zip.zip
unzip reassembled-zip.zip
Written on March 3, 2017