I want to simply add 10 to the variable "%%i" in this batch file code and print it out to the screen. numbers.txt is a file that contains a single column of numbers.
FOR /F %%i IN (numbers.txt) DO (
set /a "T=%%i+10"
@echo %T%
)
For example, if %%i was 1 I would want T to be 11.
Thanks.