hp workstations zx6000, hp server rx2600 - operation and maintenance guide

System Configuration
Extensible Firmware Interface (EFI)
Chapter 3
114
Notes:
This control structure is available only in batch script files.
The for control structure must have an ending endfor.
Examples:
To loop through a file with string values in it, you would use a control structure
similar to this:
for %string in myfile.txt
type %string
endfor
To loop through a batch of files with strings in them, you would use a control
structure similar to this:
for %string in *.txt
type %string
endfor