echo

Windows CMD · Terminal · available in the simulator

What it does

Displays messages or turns command echoing on or off in a script.

Syntax

echo [on | off] | echo [mensaje]

Options and parameters

  • on/off

    turns command echoing on or off in scripts

  • .

    Prints a blank line when used as echo.

    echo.
  • ON

    Turns on command echoing in batch files.

  • OFF

    Turns off command echoing.

    @echo off

Usage examples

  • echo Hola
  • echo off
  • echo on
  • echo.
  • @echo off
Practise echo

Related commands