How to echo the words "on" and "off" on the command line?

If I run Command Prompt and enter the command:

echo on
echo off

      

It doesn't display any output. If I enter:

echo a

      

The exit will be symbol

a

      

Is there a way to make the command line output words

on
off

      

through the echo command?

+3


source to share


1 answer


echo.on
echo.off

      



worked on Windows 7.

+3


source







All Articles