Sometimes when you download files from Internet, you will receives a lot of parts of the files (normally in .001, .002, .003 etc… extension) , which required to be concated
There are 2 ways you can do the concatenation in Mac OSX
1. Using command line:
- Open Terminal
- Go to the folder that have the parts files
- Using the ‘cat’ command to concate files:$cat file.001 file.002 file.003 > file
2. Using a program to do it:
You can try Split&Concat program, which I use for this tasks

