I need to echo commad usage like this in batch script named command.bat

command.bat on|off

I cant use

echo %0 on|off

I know I can use

echo "%0 on|off"

but it puts quotes along

Is there any other way?

link|improve this question
feedback

1 Answer

up vote 8 down vote accepted

Use a caret.

eg.

echo %0 on^|off
link|improve this answer
cool ! thanks :) – Prashant Bhate Apr 12 '11 at 19:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.