.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
文档一
文档二
echo on
echo "hello world"
pause
执行后
echo off
echo "hello world"
pause
执行后
@echo off
echo "hello world"
pause