Escaping a batch file echo that starts with a forward slash and question mark
问题 Bit of a tricky one. How can I correctly escape the following in a batch file? echo /? display this help text This particular combination of characters is treated as an "ECHO /?" command: C:\Batch>ECHO /? display this help text Displays messages, or turns command-echoing on or off. ECHO [ON | OFF] ECHO [message] Type ECHO without parameters to display the current echo setting. It does not respond to caret (^) escaping, ie. I've tried ^/? /^? and ^/^?. NB: As a workaround, I found that