home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / FFG153.ZIP / DEMOBAT.ZIP / EXE@FILE.BAT < prev    next >
DOS Batch File  |  1993-05-04  |  548b  |  21 lines

  1. @echo off
  2. cls
  3. echo This example makes a list of all .EXE files, puts them in a file called "TOZIP",
  4. echo which could then be used with PKZIP to make an archive of these EXE files.
  5. echo.
  6. echo      for example:  PKZIP EXEFILES @TOZIP
  7. echo.
  8. echo where "TOZIP" is created by FFG.
  9. echo.
  10. echo Press any key to begin searching...
  11. pause >nul
  12. echo on
  13. ffg *:*exe /fp > tozip
  14. echo off
  15. echo.
  16. echo Since this is a demonstration, TOZIP, will now be deleted...
  17. del tozip
  18. @echo off
  19. echo Done.  Press any key for next demonstration...
  20. pause>nul
  21.