Search This Blog

Join binary files into one file

On Windows Platform, open a Command Prompt Window, type:
  • copy /b file.part1 file.part2 file
On Linux/Unix, type following command in the terminal window:
  • cat file.part1 file.part2 > file
See also here

No comments:

Post a Comment