home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1995 December / SOFM_Dec1995.bin / pc / dos / utility / isam / isamdemo.bat < prev    next >
DOS Batch File  |  1995-10-31  |  755b  |  20 lines

  1. REM ISAMDEMO.BAT
  2. ECHO OFF
  3. ECHO This batch file builds a small text index using ISAMMAKE.EXE and then
  4. ECHO allows you to search it using ISAMFIND.EXE.  The ISAMFIND program
  5. ECHO invokes the READY.EXE program (included in the ZIP) as the text file
  6. ECHO viewer.
  7. ECHO ON
  8. PAUSE Press Enter to build the index
  9. ISAMMAKE /IISAMDEMO.INI
  10. PAUSE Index built.  Press Enter to actually do a search
  11. ISAMFIND /IISAMDEMO.INI
  12. ECHO OFF
  13. ECHO Removing the ISAM file created by this program.  Note that it is
  14. ECHO marked "read-only" so network access is allowed.  Have to change the
  15. ECHO attribute to remove it.  Ctrl-Break now if you want to keep the file around.
  16. ECHO ON
  17. PAUSE Ready to delete the sample ISAM file.
  18. ATTRIB ISAMDEMO.ISA -R
  19. DEL ISAMDEMO.ISA
  20.