我正在尝试使用批处理从文本文件中读取每一行。
文件内的行有一些空格,所以这是一个输入示例:
This is the first line
This is the second line
...
我正在使用以下源代码
FOR /f %%a in ("%1") do (
@echo %%a
)
goto:eof
输出如下:
This
This
...
我已阅读 Stack Overflow 中的以下条目,但不能解决我的问题。 批处理:从路径中有空格的文件中读取行