I have a batch file I need to run in DOSBOX to run 16-bit program. It was originally written for MS-DOS with long command line with "&" to split command lines.
for example:
MyCommand aaaaa, bbbbb, ccccc, dddd, eeeee &
fffff, ggggg, hhhhh &
iiiii, jjjjj, kkkkk
The "&" doesn't work in DOSBOX.
I know that "^" works for Windows Command Prompt, but it doesn't work for DOSBOX.
So, how do I do it in DOSBOX, splitting long command line to several lines in a batch file.
Thanks, Oren.