Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does this batch variable never change even when set?

@echo off
SET first=0
FOR %%N IN (hello bye) DO (
SET first=1
echo %first%
echo %%N
)

It seems that the variable "first" is always 0. Why?

like image 348
jcao219 Avatar asked Oct 16 '10 17:10

jcao219


1 Answers

With batch files, variables are expanded when their command is read - so that would be as soon as the for executes. At that point, it no longer says echo %first%, it literally says echo 0, because that was the value at the point of expansion.

To get around that, you need to use delayed expansion by surrounding your variable name with ! instead of % - so that would be echo !first!. This may require you to start cmd.exe with the /V parameter, or use setlocal enabledelayedexpansion in the beginning of your batch file (just after echo off).

If you type set /?, you'll see a much more detailed explanation of this at the end of the output.

like image 177
Michael Madsen Avatar answered Oct 11 '22 10:10

Michael Madsen