1.

Solve : Help with echo command.?

Answer»

So I want to echo something along the LINES of 123|456|789 to a text file. I know how to do that using

Echo 123|456|789 >> C:\ect\etc

But the problem is it wont LET me echo the | charactor. Any help on how to be able to do that?The | character MEANS something special to DOS; s you need to 'escape' it, like this

Echo 123^|456^|789 >> C:\ect\etc

GrahamThanks.



Discussion

No Comment Found