标签: batch-file text-files
所以我需要将GPU温度作为变量批量使用,但我还不太明白如何只选择它,没有别的。我需要每10秒钟一次的最新温度。如何从文本文件中始终选择最新温度并将其设置为%temperature%
答案 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