How can I echo a string that contains a colon :?
I know from http://www.robvanderwoude.com/escapechars.php that most characters can be escaped using ^
, but that won't work for a colon IF it is precededby %0%
I have a batch file x.bat
that contains
echo %0% http://blank
When run as x.bat
it gives me:
x.bat//blank
I want it to print out
x.bat http://blank
How to do this?