How to split file & restore in Linux?

By mantikore
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:

Tags: , ,

Leave a Reply