1 @echo off
echo回显显示,echo off关闭回显显示,@不显示这一行
例子:
1.bat
@echo offdir
2 call 命令
a.bat文件中调用b.bat文件
例子:
a.bat
echo this is a.batcall e:\b.batecho doneb.bat
echo this is b.bat运行a.bat可以发现在a运行过程中调用b.bat
3、pause命令
在程序运行中显示暂停消息,并且提示:请按任意键继续。。。。
例子:
a.bat
echo this is a.batpausecall e:\b.batecho done