tags:

views:

26

answers:

1

I have a file which was split into 600 meg pieces

how do I join then back to original?

command was used:

split -b 600m image.iso
+1  A: 
cat x* >> new.iso
ghostdog74
This will also work with > in place of >>
Wayne Conrad
Your answer is better than mine so I deleted mine.
rayd09