如何批量读取文本文件中的值

时间:2017-06-06 18:28:09

标签: batch-file text-files

enter image description here

所以我需要将GPU温度作为变量批量使用,但我还不太明白如何只选择它,没有别的。我需要每10秒钟一次的最新温度。如何从文本文件中始终选择最新温度并将其设置为%temperature%

1 个答案:

答案 0 :(得分:1)

@echo off
:loop
for /f "tokens=3 delims=, " %%a in (input.txt) do set "temperature=%%a"
echo %temperature%
timeout /t 10 >nul
goto :loop