1.

Solve : Charecters in a btach program?

Answer»

Is it more or is it not allowed to put some charecters in a BATCH FILE example is
| <--everytime i put that in the PROGRAM just closes is this now allowed in batch or am i doing something wrongTry this:

Code: [Select]@echo off
echo ^|
pauseThanks Explanation: If you want to echo certain characters in a batch file, such as ? * / \ | " ` > < and &, you have to "escape" them with a caret (^) character.



Discussion

No Comment Found