home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / DOS_HELP / PC_HELP1.ZIP / HELPDOS3.ZIP / COMMAND.### < prev    next >
Encoding:
Text File  |  1985-12-27  |  967 b   |  20 lines

  1. COMMAND:  COMMAND
  2.  
  3. FUNCTION: Invokes a secondary command processor.
  4.  
  5. FORMAT:   COMMAND [d:][path][/P][/C string]
  6.  
  7. TYPE:     DOS external command
  8.  
  9. REMARKS:  /P causes the new command processor to become permanent in memory.
  10.           /C passes the command 'string' as a parameter.
  11.           COMMAND searches the directory d:path for the new command processor
  12.           to be loaded. Control can be returned to the previous command level
  13.           by issuing the command EXIT, except in the case when the /P option
  14.           was used to load the secondary processor. If the /C option is used,
  15.           the command line string is interpretted and acted upon as if it was
  16.           entered as a normal command. This option allows one to nest batch
  17.           files as follows: the first file calls the second with COMMAND /C
  18.           followed by the name of the second file; control returns from the
  19.           second to the first by an EXIT command.
  20.