echo

1、echo回声,echo什么,返回什么。

2、echo hello, 结果是:

     echo hello

     hello

3、如果我不想显示echo hello,怎么办?使用:

     echo off

     echo hello

4、3的显示结果:

     echo off

     hello

     如果我不想显示echo off,怎么办?

     @echo off

      hello

原文地址:https://www.cnblogs.com/nzbbody/p/4278377.html