How to split & join large files, binary, text etc.

In Linux, we can split large files with split command. And to join you just need to cat the files into one file. Split can be used on binaries, text files whatever. To split -># split –byte=10k /path/to/large/file /path/to/output/files/prefix For eg. I want to split /root/slapd binary file. Size of it is 1.3M root@neel:~/test# ls…