To split a file:
split -b200m book.rar book-splitĀ
Here 200m is 200 MegaByte
book.rar is the source file to be splitted.
and book-split is prefix of generated file.
To restore the file:
cat book-split* > NEWFILENAME
Source:
split -b200m book.rar book-splitĀ