作用:
格式:批处理中调用还有一个批处理或调用行号后的全部命令
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!!!
执行结果: