home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / zsys / znode-12 / s / z3help11.lbr / RESOLVE.HZP / RESOLVE.HLP
Encoding:
Text File  |  1993-06-12  |  2.4 KB  |  52 lines

  1. ;
  2.                                  RESOLVE.COM                                  
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5.                3k (23)   D565  1.3        D. Nielsen 3/89          Z3COM5
  6.  
  7.   1- Usage  2- Examples of Use                                                
  8.  
  9.  
  10.    RESOLVE will resolve  a multiple-command  line passed to  it and place that
  11. command line in  the Multiple-Command Line Buffer in memory.   It will resolve
  12. references to shell variables, registers, and System File names.
  13. :1
  14.  
  15. Usage:
  16.  
  17.    RESOLVE recognizes the following flags:
  18.  
  19.    %<text>           Shell variable name.
  20.    $R<n>             Register number.  (n = 0-31)
  21.    $D                Current disk letter.
  22.    $U                Current user number.
  23.    $F<n>             System File name.  (n = 1-4)
  24.    $N<n>             System File name, chars 1-8 only.  (n = 1-4)
  25.    $T<n>             System File name, extension only.  (n = 1-4)
  26.    $|                Substitute multiple-command separator.
  27.  
  28.    The QUIET flag  is  adhered  to;  the program  will not  print its  sign-on
  29. message or error messages if the QUIET flag is set.
  30.  
  31.    If there is no room for the command-line generated,  the ERROR flag will be
  32. set,  and an error message may be printed,  depending upon  the  state  of the 
  33. QUIET flag.  Uninterpretable '$' parameters will also set the error flag. 
  34. :2
  35.  
  36. Examples of Use:
  37.  
  38.    a. HELP:;ROOT:dir14 *.hlp h;ROOT:quiet s;ROOT:getvar ghelp enter   <<
  39.       desired help file by name -;ROOT:resolve hlp %ghelp;ROOT:quiet r;$d$u:
  40.  
  41.       - 'GH' (Get Help) alias defined in Z-NEWS #507 (11 Aug '86):
  42.  
  43.       Log into HELP directory and run DIR14 from ROOT: directory on help files
  44.       with mask to show files of type HLP.   Go into  quiet mode  to  suppress
  45.       utility  headers  and messages.   With files  showing on screen,  prompt
  46.       operator for one to use,  "enter desired help file  by name - ".  GETVAR
  47.       places  operator's response into variable  name 'ghelp' which is located
  48.       automatically in ROOT file SH.VAR.   RESOLVE sets up main command string
  49.       consisting  of HLP  (HELP53.COM renamed) followed  by  expanded  'ghelp'
  50.       variable (operator's  chosen  HLP file).   Reset quiet  flag  for normal
  51.       operation and log back into original directory.  
  52.