首页 > 代码库 > window批处理-3.go

window批处理-3.go

go:

控制批处理中的命令执行流程

命令格式:

go label

lable--行号

demo

bat

@echo off
echo 跳过中间,执行最后
goto last
type a.txt
:last
dir .
pause

a.txt

aaaaa


结果: