home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
High Voltage Shareware
/
high1.zip
/
high1
/
DIR3
/
FFG155.ZIP
/
DEMO_BAT.ZIP
/
EXE@FILE.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-05-04
|
548b
|
21 lines
@echo off
cls
echo This example makes a list of all .EXE files, puts them in a file called "TOZIP",
echo which could then be used with PKZIP to make an archive of these EXE files.
echo.
echo for example: PKZIP EXEFILES @TOZIP
echo.
echo where "TOZIP" is created by FFG.
echo.
echo Press any key to begin searching...
pause >nul
echo on
ffg *:*exe /fp > tozip
echo off
echo.
echo Since this is a demonstration, TOZIP, will now be deleted...
del tozip
@echo off
echo Done. Press any key for next demonstration...
pause>nul