Script batch - ECHO

ECO

Questo comando batch visualizza i messaggi o attiva o disattiva l'eco dei comandi.

Sintassi

ECHO “string”

Esempio

L'esempio seguente mostra le diverse varianti del comando dir.

Rem Turns the echo on so that each command will be shown as executed 
echo on 
echo "Hello World" 

Rem Turns the echo off so that each command will not be shown when executed 
@echo off 
echo "Hello World" 

Rem Displays the contents of the PATH variable 
echo %PATH%

Produzione

Il seguente output verrà visualizzato nel prompt dei comandi.

C:\>Rem Turns the echo on so that each command will be shown as executed

C:\>echo on

C:\>echo "Hello World"
"Hello World"

C:\>Rem Turns the echo off so that each command will not be shown when executed

"Hello World"
C:\Users\ADMINI~1\AppData\Local\Temp