Repeat all the cats until you run out of files. I suspect there is probably a better way of doing the second step involving some shell scripting. Or you could write a cute GUI for this!
If you want to control the name of the split files a bit better you can do something like:
Code:
split -b100k Test.JPG split_Test_
which will produce files split_Test_aa, split_Test_bb etc.
OK. Here's a better way to do the concat stage. If we assume that our input files are called split_test_aa, split_test_bb etc and we want a file called test2.jpg then:
When you first start the Terminal your current working directory will be ~ (your home folder /Users/<username> normally). You use cd <foldername> to change to a folder within the current folder. cd .. takes you up one level. You can combine cds together with / so cd Desktop/test would take to you a folder called test on your Desktop if you start in your home folder.
You can list the contents of your current folder via ls. The standard output does not help you tell which are folders. ls -l gives you more details. If the block of letters at the start of the line starts with a d then it's a directory (folder).