home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / FFG155.ZIP / DEMO_BAT.ZIP / OTHEREXE.BAT < prev    next >
DOS Batch File  |  1993-12-07  |  441b  |  17 lines

  1. @echo off
  2. cls
  3. echo Here is a listing of executable files other than EXE's and COM's. It uses
  4. echo text searching.
  5. echo.
  6. echo Press any key to begin searching...
  7. pause >nul
  8. ::
  9. :: This does a case-sensitive search of the first 2 bytes of all files except
  10. :: COM and EXE's "MZ", the executable file signature:
  11. ::
  12. echo on
  13. ffg /p *:* /x*.[com,exe] /$=c=#2MZ
  14. @echo off
  15. echo Done.  Press any key for next demonstration...
  16. pause>nul
  17.