…kinda like ‘cat’ in *nix or ‘copy’ in DOS. Basically, I need a Windows app that can take a file that I’ve split into smaller chunks and put it back together. Free/share, preferably. I’m dealing with users who may not necessarily be comfortable with a DOS prompt, hence the Windows requirement.
Any suggestions?
I posted this in GQ because I’m not entirely sure that something like this exists, but if it’s IMHO, I apologize in advance.
Actually, if it’s just plain text files that’re broken up, you can use the ‘copy’ command in DOS:
copy /a 1.txt + 2.txt + 3.txt + 4.txt a.txt
‘/a’ indicates ascii
‘/b’ binary!
What it’s doing: Copying data from 1,2,3,4 files and putting it into a.txt.