I have a test.bat which contains just this: "echo blah". When I run
I get output.txt containting "blah". How do I redirect the output if test.bat is launched with "start":
I get no output.txt. I tried escaping the ">" with "^" and "\", but no dice.
Code:
test.bat > output.txt
Code:
start "test" test.bat > output.txt