ECHO - ECHO
此批处理命令显示消息,或打开或关闭命令回显。
ECHO - 语法
ECHO “string”
ECHO - 示例
以下示例显示了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%
以下输出将显示在命令提示符下。
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
参考链接
https://www.learnfk.com/batch-script/batch-script-echo.html
标签:executed,批处理,无涯,echo,Rem,World,ECHO,Hello From: https://blog.51cto.com/u_14033984/8205180