home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / rxnew11a.zip / search.rxn < prev    next >
Text File  |  1993-04-26  |  1KB  |  44 lines

  1. SEARCH        Searching with RexxNews
  2. -------------------------------------
  3.  
  4. The RexxNews search command is used to search the list of groups or the
  5. headers of articles within a group.
  6.  
  7. The format of the command is:
  8.  
  9. SEarch [<tag>] [RANGE <range>] [ [FOR] <target>]
  10.  
  11. where:
  12.  
  13.  <tag>     is a valid header field.  Header fields include FROM, SUBJECT, 
  14.            DATE, etc.  If no tag is given, subject is assumed as the default.
  15.  
  16.  <range>   is a range of articles within a group.  Valid ranges are:
  17.              *                      All articles in a group
  18.              <number>               A single article
  19.              <first>-<last>         Articles between first and last
  20.  
  21.           If range is omitted, articles from the current article to the end 
  22.           of the group are searched.
  23.  
  24.  <target> is any string.  No wildcards are allowed, and a match will occur
  25.           when the target occurs anywhere within the specified field. 
  26.           Searches always ignore case.
  27.  
  28. Example commands;
  29.  
  30. search windows
  31.  
  32.        would search the subject of all articles within the current group for
  33.        the string 'windows'.
  34.  
  35. search from range * for ibm
  36.  
  37.        would search the 'from' field of all article headers within the current
  38.        group for 'ibm'.
  39.  
  40. search subject range 1-234 for os
  41.  
  42.       would search the subject field of articles 1 through 234 for the string
  43.       'os'.
  44.