I'm trying to change the font color of the command prompt by executing "color 09" from a tcl script. I got an error so I tried executing the command in a bat file. I make the call:
catch [ exec ChangeColor.bat "0A" ]
ChangeColor.bat is just:
color %1
This doesn't work though.
catch [ exec ChangeColor.bat "0A" ]
ChangeColor.bat is just:
color %1
This doesn't work though.