CHAPTER.3\WILDFIND.BAT  ·  BAT  ·  292 B  ·  1989-12-22  ·  from PCPlus_Help-Screen-Collection_1990
ECHO OFF
if exist %2 goto found
ECHO.
ECHO No files match specification
ECHO.
ECHO Format for WILDFIND is:
ECHO WILDFIND "string" filespec
ECHO.
ECHO The command takes the same options as the
ECHO MS-DOS utility FIND.
ECHO.
goto end
:found
for %%a in (%2) do find %1 %%a
:end