I have a BATCH script that will create a text file that will later be executed by another program based on user input. I want to be able to echo Label>start
to a text file. Unfortunately, CMD reads it as a command (because of the > character) and does not echo properly. If I use quotation marks they echo to the .txt file
"Level>start"
and so it cannot be executed. I really need some help with this.