首页 > 代码库 > window批处理-4.call

window批处理-4.call

作用:

批处理中调用另一个批处理或调用行号后的所有命令


格式:

call [FileName] [:label]


demo:

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.txt

hello world!!!

运行结果: