window批处理-4.call
2020-12-13 04:53
标签:style blog http 2014 html re 作用: 批处理中调用另一个批处理或调用行号后的所有命令 call [FileName] [:label] call.bat: window批处理-4.call,搜素材,soscw.com window批处理-4.call 标签:style blog http 2014 html re 原文地址:http://blog.csdn.net/wobendiankun/article/details/37954667
格式:
demo:
@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!!!
运行结果: