How would you go about doing this?
I have a file which contains roughly 40 lines, each line are variables for an .exe file.
I've setup a foreign command
$ CC := "$something$something:file.exe"
I then try to loop through the file line by line
{Method1}
$ OPEN a file.txt
$ loop:
$ READ/END_OF_FILE:end a b
$ CC b
$ goto loop
$ end:
My problem is because the value of b contains quotes (" ") around it the file.exe does not execute
I also tried to put CC on the start of each line of file.txt (shown below) and run each line 1 at a time just like above but it gives an error that it cannot run CC.exe from the default location. As you can see below variables 2-4 need to be in double quotes if that matters for method 1 ideas.
{Method 2}
$ CC variable1 "variable2" "variable3" "variable4"
What I need to do in the end is run about 10 of these at one time, so i think if I could get method 2 to work that would be the best.