PDA

View Full Version : How to join multiple binary files into one like copy /b in msdos


Paloseco
November 9th, 2006, 08:37 AM
In msdos you can do "copy /b part1 + part2 + part3 file.ext". How can this be done in linux?

Najand
November 9th, 2006, 09:06 AM
Hmm... CAT command may do that...

cat part* > file.ext

Paloseco
November 9th, 2006, 12:03 PM
ok thanks

Seine
November 9th, 2006, 11:10 PM
IIRC there's a tool called chunk that seems to do the same.

chunk part.01 part.02 part.03 final