Hello,
I come from unix, and I dont usertood why this basic script return me only the first value of the variable
--> This will only return me TUTU, why ?
I come from unix, and I dont usertood why this basic script return me only the first value of the variable
Code:
set databases="TUTU,POPOP,KLKLK"
echo %databases%
for /F "delims=," %%h in (%databases%) do (echo %%h)
--> This will only return me TUTU, why ?