home *** CD-ROM | disk | FTP | other *** search
- FOR
-
- FOR allows iterative execution of DOS commands. The format is:
-
- FOR %%variable IN (set) DO command ----- when used in BATCH files
- FOR %variable IN (set) DO command ----- when entered at the keyboard
-
- where <variable> is sequentially set to each member of the list specified
- by <set> and then <command> is evaluated and executed. The parentheses
- around <set> are required.