Page 1 of 1

Porting installer...

Posted: Sun Jan 05, 2003 12:12 pm
by jrfritz
I'm currently porting the FritzOS installer to windows...and I came up with a problem.

I used:

cat boot.bin kernel32.bin | somefile.img ( or something like that...I forgot the exact command line ...

now... how would I be able to take two files...and convert them to 1 file consecutively using a GNU tool?

Thankyou,

Re:Porting installer...

Posted: Sun Jan 05, 2003 12:24 pm
by nullify
cat file1 file2 > merged_file

Re:Porting installer...

Posted: Sun Jan 05, 2003 12:26 pm
by jrfritz
Yes...but I am porting the installer to windows...

so I need windows tools ;)

Re:Porting installer...

Posted: Sun Jan 05, 2003 12:29 pm
by nullify
copy /b file1 + file2 merged_file

Re:Porting installer...

Posted: Sun Jan 05, 2003 12:33 pm
by jrfritz
Oh..ty...

I forgot about that option...