I need to copy the content of a folder which contains binary files to one binary file in another directory.
In Windows I can just use:
copy file1 + file
Unix has no distinction between text and binary files, which is why you can just cat them together:
cat
cat file1 file2 > target_file