So I have this command that creates a file, would like to auto open the file after the command is done... I've tried this:
start /b /wait rspec spec --drb --format html --out doc/rspec_out.html
echo DONE
start doc/rspec_out.html
But once the first command finishes, the second command doesn't appear to run (I don't see DONE).
What am I doing wrong?
Thanks,
rspeca batch file? – Andriy M Nov 20 '12 at 15:52