home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / look.doc < prev    next >
Text File  |  1990-07-02  |  3KB  |  62 lines

  1. LOOK.DOC               Mini DOC for LOOK.COM           by Tom Zimmer
  2.  
  3.   LOOK is a text search program, it will look for words or phrases in one or
  4. more files in one or more directories.
  5.  
  6. LOOK can be used in any of the follows ways:
  7.  
  8.     LOOK mytext <enter>                search all (*.*) file in the
  9.                                        current directory for "mytext".
  10.  
  11.     LOOK "my text" <enter>             search all (*.*) files in the
  12.                                        current directory for "my text".
  13.  
  14.     LOOK 'my text' *.txt *.doc         search all .TXT and all .DOC files
  15.                                        for "my text".
  16.  
  17.     LOOK !my text! *.txt>mytext.lst    search all .TXT files for "my text"
  18.                                        and write the found list of occurances
  19.                                        to the file MYTEXT.LST
  20.  
  21.     LOOK "my text" -g<dir> *.txt       GLOBAL search all .TXT files in <dir>
  22.                                        and lower directories for "my text".
  23.  
  24.   If LOOK is entered on a line without any parameters, then it will prompt
  25. for the string to search for, and the file specs to search.
  26.  
  27.   As can be seen in the examples above, the first "NON-ALPHANUMERIC"
  28. character following the LOOK command will be used as the text string
  29. delimiter character.
  30.  
  31.   A full DOS pathed filespec or specs can be used in any of the above
  32. examples. Here are some typical filespecs:
  33.  
  34.         C:\UTILS\*.DOC   A:\*.TXT   C:\TC\INCLUDE\*.H
  35.  
  36.   LOOK scans files at the rate of about 40,000 bytes per second on a 8MHz
  37. PC-AT class harddisk machine.
  38.  
  39.   You can pause LOOKing by pressing the space bar, or terminate with
  40. the ESCape key.
  41.  
  42.   LOOK automatically breaks non-text files into 64 character lines, so it
  43. can be used for searching Forth .BLK and .SCR files as well as text files.
  44.  
  45.   LOOK was written in Forth, and compiled with the TCOM optimizing
  46. compiler on the F-PC Forth system using IBM-PC/AT compatible hardware. A
  47. machine with at least 512k of memory and a harddisk is required. LOOK is
  48. public domain, as is F-PC, and TCOM. To obtain the latest version of
  49. LOOK, F-PC, and TCOM send $50.00 to the address listed below:
  50.  
  51.                        Tom Zimmer
  52.                        292 Falcato Drive
  53.                        Milpitas, Ca. 95035
  54.  
  55.                                Home (408) 263-8859
  56.                                Work (408) 432-4643
  57.  
  58.   LOOK, F-PC, and TCOM come with the complete source, and can each can be
  59. completely regenerated without any additional software tools.
  60.  
  61.  
  62.