例1:读取当前 bat 文件所在目录下的 test.txt 文件内容,然后逐行打印到控制台。
@echo off for /f "delims=" %%i in (test.txt) do ( echo %%i ) pause
test.txt 文件内容:
one
two
three
运行效果图: