我正在编写一个批处理脚本,可以从驱动器上的各种文件中获取数据,并且该位工作正常。 问题是我希望一次只能在cmd中输入文件的内容。
有点像这样:
Hello, this is the first line of the text file
暂停1秒
And this is the second line
等
我尝试过使用for命令,但我只能重复第一行。
任何帮助将不胜感激,谢谢先进!路加福音
答案 0 :(得分:0)
答案 1 :(得分:0)
timeout
在Vista及以上
@echo off
for /f "usebackq delims=" %%a in ("file.txt") do (
echo %%a
timeout /t 1 /nobreak
)
pause