0

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.

melpomene
  • 81,915
  • 7
  • 76
  • 137
eric
  • 1

1 Answers1

0
echo Level^>start

seems to work.

melpomene
  • 81,915
  • 7
  • 76
  • 137