VOGONS

Common searches


First post, by Guest

User metadata

take this bat file for example (test.bat):

@echo off
echo %1
echo %2

in real dos it's possible to specify parameters like this:
test hello bye

output:
hello
bye

or this way:
test,hello,bye

same output:
hello
bye

is it possible to implement the second method in dosbox? I have an application that calls a batch file this way and there is no way to I can change it