Lets says I have an image and its too big:
split --bytes=1M /path/to/image/image.jpg /path/to/image/prefixForNewImagePieces
and then to put it together I use cat:
cat prefixFiles* > newimage.jpg
Источник
Lets says I have an image and its too big:
split --bytes=1M /path/to/image/image.jpg /path/to/image/prefixForNewImagePieces
and then to put it together I use cat:
cat prefixFiles* > newimage.jpg
Источник