作用:
格式:批处理中调用另一个批处理或调用行号后的所有命令
demo:call [FileName] [:label]
call.bat:
@echo off echo 开始调用called type hello.txt echo 结束调用called
test.bat@echo off echo 准备调用called call called.bat pause call :last :last echo 调用called之后的内容 pause
hello.txthello world!!!
运行结果: