home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / file_mgt / ffg / demo_bat / exe@file.bat < prev    next >
Encoding:
DOS Batch File  |  1995-04-01  |  431 b   |  17 lines

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