home *** CD-ROM | disk | FTP | other *** search
- @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
-