BATCH\EXAMPLE1.BAT  ·  BAT  ·  172 B  ·  1990-05-14  ·  from WhatPC_Issue-12_Jul-1990
@ECHO OFF
ECHO This example batch file uses the FOR command.
ECHO It will list files beginning with letters A, B and C.
PAUSE
@ECHO ON
FOR %%f IN (a b c) DO dir %%f