Page 1 of 1

Batch File Help

Posted: 15 Apr 2009 17:40
by NZIdiot
I am currently writing a batch script file. I need the '>' character to appear but not get used. When i add this

ECHO >

The screen shuts down my guess because its using the > character where as i just want it to appear. How do i get this to appear without activating?

Thanks

Posted: 15 Apr 2009 17:50
by RElliott63
Put a ^ in front of it

as in:

Echo ^>

Posted: 15 Apr 2009 18:33
by NZIdiot
Thanks. Worked Perfectly

Posted: 16 Apr 2009 08:16
by RElliott63
You're welcome!