home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
pcmag
/
vol8n03.arc
/
DOCLIST.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1988-10-06
|
211 b
|
10 lines
ECHO OFF
IF "%2"=="" GOTO Params
IF EXIST %2 DEL %2
ECHO Storing list of files matching %1 in file %2
FOR %%f IN (%1) DO ECHO %%f >> %2
GOTO End
:Params
ECHO SYNTAX: "DOCLIST filespec outputfile"
:End