home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / COMPRESS / LOOKFR.ZIP / LOOKFOR.BAT next >
Encoding:
DOS Batch File  |  1990-10-14  |  755 b   |  36 lines

  1. echo off
  2. cls
  3. if exist PKUNZIP.EXE goto parttwo
  4. echo PKUNZIP is not in this directory.  Please copy it to this directory
  5. echo and run LOOKFOR again.
  6. echo  
  7. goto end
  8. :parttwo
  9. if exist FGREP.COM goto part3
  10. echo FGREP.COM is not in this directory.  Please copy it to this
  11. echo directory and run LOOKFOR again.
  12. echo  
  13. goto end
  14. :part3
  15. if exist MORE.COM goto searchit
  16. echo MORE.COM is not in this directory.  Please copy it to this directory 
  17. echo and run LOOKFOR again.
  18. echo  
  19. goto end
  20. :searchit
  21. echo  
  22. echo  
  23. echo  
  24. echo  
  25. echo  
  26. echo  
  27. echo  
  28. echo  
  29. echo  
  30. echo  
  31. echo  
  32. echo                              Searching....
  33. echo                           -  Please wait  -
  34. pkunzip -c %1 | fgrep %2 %3 %4 %5 %6 %7 %8 | more
  35. :end
  36.