I want something similar to printf & scanf in C in batch scripting?
This is my script
for /F "delims=;" %%i in (servers11.txt) do (
type \\triss-s02-vm\ITG\Triton\GroupConfig.csv | grep -i %%i > temp13.txt
REM type temp.txt | gawk -F"," '{print $1}'
)
Here I am creating servers11.txt manually and entering value there. I want to enter it from command prompt. Please help me in doing that.