Batch File

FOR

Windows NT 4/2000/XP Syntax

บันทึกช่วยจำ

FOR %variable IN (set) DO command [command-parameters]
%~i expands %i removing any surrounding quotes (“)
%~fi expands %i to a fully qualified path name
%~di expands %i to a drive letter only
%~pi expands %i to a path only
%~ni expands %i to a file name only
%~xi expands %i to a file extension only
%~si expanded path contains short names only
%~ai expands %i to file attributes of file
%~ti expands %i to date/time of file
%~zi expands %i to size of file
%~$PATH:i searches the directories listed in the PATH environment variable and expands %i to the fully qualified name of the first one found.
If the environment variable name is not defined or the file is not found by the search, then this modifier expands to the empty string

The modifiers can be combined to get compound results:

%~dpi expands %i to a drive letter and path only
%~nxi expands %i to a file name and extension only
%~fsi expands %i to a full path name with short names only
%~dp$PATH:i searches the directories listed in the PATH environment variable for %i and expands to the drive letter and path of the first one found.
%~ftzai expands %i to a DIR like output line

 

http://www.robvanderwoude.com/for.php

http://www.robvanderwoude.com/ntfor.php

FOR loops

Basic syntax:

FOR %A IN (list) DO command [ parameters ]
list is a list of any elements, separated by either spaces, comma’s or semicolons.
command can be any internal or external command, batch file or even – in OS/2 and NT – a list of commands
parameters contains the command line parameters for command.
In this example, command will be executed once for every element in list, using parameters if specified.
A special type of parameter (or even command) is %A, which will be substituded by each element from list consecutively.

Full syntax

MS-DOS and PC-DOS
(incl. Win95’s MS-DOS 7.*)
as specified under basic syntax, plus VFAT/FAT32 long file name handling with LFNFOR in MS-DOS 7.*
OS/2 Warp as specified under basic syntax, though unlike in DOS, you may use redirection and conditional execution in the command string specified after DO
Windows NT 4/2000/XP as specified under basic syntax, plus many new options

 

Notes

1. %A vs. %%A
%A is for use on command lines only.
In all examples and syntax lines shown %A should be substituted with %%A when used in batch files.
2. %a vs. %A
The A in %A may be replaced by any character, either upper case or lower case, except numbers. Note, however, that variables ar case sensitive, so be consistent:
FOR %A IN (1 2 3) DO ECHO %a
will not work.
FOR %? IN (1 2 3) DO ECHO %?
on the other hand, will.
3. Nesting FOR commands
In DOS (COMMAND.COM), nesting FOR commands is not possible.
However, by using a second command processor you may still be able to nest them:
FOR %A IN (1 2 3) DO COMMAND /C FOR %B IN (A B C) DO ECHO %A%B
Note that you cannot replace COMMAND /C with CALL

In NT (CMD.EXE) nesting is possible.
Note that to nest FOR loops, each loop requires its own variable; i.e.
FOR %A IN (1 2) DO FOR %A IN (A B) DO ECHO %A
will lead to undesired results:
A
B
A
B

FOR %A IN (1 2) DO FOR %B IN (A B) DO ECHO %A%B
will work as planned, and display:
1A
1B
2A
2B

4. Commands in list
list may not only contain a list of parameters, it may even contain a list of commands that can be executed consecitively with the same parameters. a.k.a.command may also be %A:
DIR > tempfile.txt
FOR %A IN (TYPE DEL) DO %A tempfile.txt

This FOR loop will first type the temporary file and then delete it.
5. list delimiters
The “elements” in list can be delimited (separated) by spaces, tabs, commas or semicolons.
As of MS-DOS 7, doublequoted strings are treated as a single element, wether they contain delimiters or not.

In NT, it is possible to define your own delimiters with FOR /F.

6. Forward slashes in list
If list starts with a forward slash, COMMAND.COM (except MS-DOS 7) will split the string in list into its first character following the forward slash and the remainder of the string.
This is demonstrated in the interactive FOR examples
7. Conditional manipulation of variables in command
The following does not work:
FOR %%A IN (1 2 3) DO IF "%VAR%"=="" SET VAR=%%A
sets VAR to 3, not 1
The %VAR% in the comparison (IF “%VAR%”==””) is interpreted immediately, and thus empty, and then the FOR loop is started.
From the FOR loop’s point of view, the command issued was:
FOR %%A IN (1 2 3) DO IF ""=="" SET VAR=%%A
The following construction can be used as a workaround:
FOR %%A IN (1 2 3) DO CALL TEST2.BAT %%A
If TEST2.BAT looks like this:
IF "%VAR%"=="" SET VAR=%1
then VAR is set to 1
In NT a CALL to a subroutine could be used instead.
8. Jump using GOTO in command
FOR %%A IN (1 2 3) DO GOTO=%%A
:1
ECHO 1
GOTO End
:2
ECHO 2
GOTO End
:3
ECHO 3
:End

will display different results for different command interpreters:

  • CMD.EXE (NT and OS/2) will jump to label 1
  • COMMAND.COM (DOS) will jump to label 1, then 2, then 3, without executing any of the following commands, and then execute the ECHO 3 and following commands

FOR

Windows NT 4/2000/XP Syntax

 

Note: The parts of this text that are displayed in magenta are valid for Windows 2000 and XP only

Runs a specified command for each file in a set of files.

FOR %variable IN (set) DO command [command-parameters]
%variable Specifies a replaceable parameter.
(set) Specifies a set of one or more files. Wildcards may be used.
command Specifies the command to carry out for each file.
command-parameters Specifies parameters or switches for the specified command.

To use the FOR command in a batch program, specify %%variable instead of %variable
Variable names are case sensitive, so %i is different from %I.

If Command Extensions are enabled, the following additional forms of the FOR command are supported:

FOR /D %variable IN (set) DO command [command-parameters]

If set contains wildcards, then specifies to match against directory names instead of file names.

FOR /R [[drive:]path] %variable IN (set) DO command [command-parameters]

Walks the directory tree rooted at [drive:]path, executing the FOR statement in each directory of the tree.
If no directory specification is specified after /R then the current directory is assumed.
If set is just a single period (.) character then it will just enumerate the directory tree.

FOR /L %variable IN (start,step,end) DO command [command-parameters]

The set is a sequence of numbers from start to end, by step amount.
So (1,1,5) would generate the sequence 1 2 3 4 5 and (5,-1,1) would generate the sequence (5 4 3 2 1)

Note: If step equals 0, and end is greater than or equal to start, then the loop will continue forever:

FOR /L %A IN (0,0,0) DO command [command-parameters]

This is the batch equivalent of Do Forever (continuous) loops in “real” scripting languages.

FOR /F [“options“] %variable IN (filenameset) DO command [command-parameters]
FOR /F [“options“] %variable IN (“string“) DO command [command-parameters]
FOR /F [“options“] %variable IN (‘command‘) DO command [command-parameters]

or, if usebackq option present:

FOR /F [“options“] %variable IN (filenameset) DO command [command-parameters]
FOR /F [“options“] %variable IN (‘string‘) DO command [command-parameters]
FOR /F [“options“] %variable IN (`command`) DO command [command-parameters]

filenameset is one or more file names.
Each file is opened, read and processed before going on to the next file in filenameset.
Processing consists of reading in the file, breaking it up into individual lines of text and then parsing each line into zero or more tokens. The body of the for loop is then called with the variable value(s) set to the found token string(s).
By default, /F passes the first blank separated token from each line of each file.
Blank lines are skipped.
You can override the default parsing behavior by specifying the optional “options” parameter. This is a quoted string which contains one or more keywords to specify different parsing parameters.
The keywords are:

eol=c specifies an end of line comment character (just one).

Note: The default eol character is the semicolon (;).
That is why FOR /F loops skip lines starting with semicolons unless a different eol character is specified (try "eol=").
skip=n specifies the number of lines to skip at the beginning of the file.
delims=xxx specifies a delimeter set. This replaces the default delimiter set of space and tab.
tokens=x,y,m-n specifies which tokens from each line are to be passed to the for body for each iteration.
This will cause additional variable names to be allocated.
The m-n form is a range, specifying the mth through the nth tokens.
If the last character in the tokens= string is an asterisk, then an additional variable is allocated and receives the remaining text on the line after the last token parsed.
usebackq specifies that the new semantics are in force, where a back quoted string is executed as a command and a single quoted string is a literal string command and allows the use of double quotes to quote file names in filenameset.

Some examples might help:

FOR /F “eol=; tokens=2,3* delims=, ” %i in (myfile.txt) do @echo %i %j %k

would parse each line in myfile.txt, ignoring lines that begin with a semicolon, passing the 2nd and 3rd token from each line to the for body, with tokens delimited by commas and/or spaces.
Notice the for body statements reference %i to get the 2nd token, %j to get the 3rd token, and %k to get all remaining tokens after the 3rd.
For file names that contain spaces, you need to quote the filenames with double quotes.
In order to use double quotes in this manner, you also need to use the usebackq option, otherwise the double quotes will be interpreted as defining a literal string to parse.

%i is explicitly declared in the for statement and the %j and %k are implicitly declared via the tokens= option.
You can specify up to 26 tokens via the tokens= line, provided it does not cause an attempt to declare a variable higher than the letter ‘z’.
Remember, FOR variable names are global, and you can’t have more than 26 (NT 4) or 52 (Windows 2000/XP) total active at any one time.

You can also use the FOR /F parsing logic on an immediate string, by making the filenameset between the parenthesis a quoted string. It will be treated as a single line of input from a file and parsed.

Finally, you can use the FOR /F command to parse the output of a command. You do this by making the filenameset between the parenthesis a single quoted (NT 4) or back quoted (Windows 2000/XP) string. It will be treated as a command line, which is passed to a child CMD.EXE and the output is captured into memory and parsed as if it was a file.
So the following examples:

FOR /F “delims==” %i IN (‘set’) DO @echo %i
FOR /F “usebackq delims==” %i IN (`set`) DO @echo %i

would enumerate the environment variable names in the current environment.

In addition, substitution of FOR variable references has been enhanced.
You can now use the following optional syntax:

%~i expands %i removing any surrounding quotes (“)
%~fi expands %i to a fully qualified path name
%~di expands %i to a drive letter only
%~pi expands %i to a path only
%~ni expands %i to a file name only
%~xi expands %i to a file extension only
%~si expanded path contains short names only
%~ai expands %i to file attributes of file
%~ti expands %i to date/time of file
%~zi expands %i to size of file
%~$PATH:i searches the directories listed in the PATH environment variable and expands %i to the fully qualified name of the first one found.
If the environment variable name is not defined or the file is not found by the search, then this modifier expands to the empty string

The modifiers can be combined to get compound results:

%~dpi expands %i to a drive letter and path only
%~nxi expands %i to a file name and extension only
%~fsi expands %i to a full path name with short names only
%~dp$PATH:i searches the directories listed in the PATH environment variable for %i and expands to the drive letter and path of the first one found.
%~ftzai expands %i to a DIR like output line

 

 

Leave a comment

Leave a comment