不懂的cmd命令可以在这里搜
github上的一些.bat文件的例子(https://github.com/Archive-projects/Batch-File-examples)
.bat文件的例子(https://github.com/happy05dz/Batch-Script-Collection)
基本语法
echo on
echo "hello world"
pause
执行后
echo off
echo "hello world"
pause
执行后
@echo off
echo "hello world"
pause