home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / doshelp / helpsb.zoo / help / batch / call.hlp next >
Encoding:
Text File  |  1989-01-01  |  896 b   |  18 lines

  1.                             CALL                                [new DOS 3.3]
  2.  
  3. This internal command allows a BATCH file to simply call another BATCH 
  4. file as a subroutine. It is similar to but requires less typing than the 
  5. COMMAND /C method available with previous versions of DOS.
  6.  
  7.     CALL [d:][pathname]filename [value1 ... [valuen]] 
  8.  
  9. filename is the name of the BATCH file. Do not include the .BAT extension.
  10.     [d:] and [pathname] are optional.
  11.  
  12. value1 ... valuen are the (optional) values to be substituted for the
  13.     replaceable parameters (if any) in the BATCH file being executed.
  14.  
  15. Any changes the called BATCH file makes to the DOS environment space will 
  16. be lost when it EXITs. Piping and redirection should not be used with this 
  17. command.
  18.