home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / geturl.zip / srchobb.cmd < prev    next >
OS/2 REXX Batch file  |  1995-12-04  |  273b  |  10 lines

  1. /* REXX Program to search Hobbes 00index for things */
  2. parse arg searchterm
  3. 'geturl ftp://hobbes.nmsu.edu/00index.txt -o'
  4. 'hobfilt <00index.txt >hobbes.idx'
  5. 'del 00index.txt'
  6. 'find /i "'searchterm'" hobbes.idx >Results'
  7. 'del hobbes.idx'
  8. 'start /f e Results'
  9. exit
  10.