home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / USCX / DOSUT-03.ZIP / ASK.DOC < prev    next >
Text File  |  1983-08-01  |  2KB  |  52 lines

  1.                                                    Batch
  2.                                                    Commands
  3.  
  4.     ASK subcommand
  5.  
  6.  
  7.     Purpose:    This command allows the user to set the BATCH
  8.                 environment ERRORLEVELS interactively.
  9.  
  10.     Format:     ASK [prompt line]
  11.  
  12.     Type:       Internal        External
  13.                                   ***
  14.  
  15.     Remarks:    This command is designed to be used
  16.                 interactively. It allows the user some manual
  17.                 input into the BATCH envirionment. The 'prompt
  18.                 line' parameter is optional.
  19.  
  20.     Example:    ASK Do you want to go to PAS2 ?
  21.  
  22.                 This command accepts a single character from
  23.                 the user and sets ERRORLEVEL based on whether
  24.                 Y or N was entered. Y or y will set ERRORLEVEL
  25.                 0, N or n will set ERRORLEVEL 1
  26.  
  27.                 ASK
  28.  
  29.                 Displays 'Press Y or N ' on the console and
  30.                 waits for a keypress.
  31.  
  32.                 (Sample BATCH file)
  33.  
  34.                 ASK
  35.                 IF ERRORLEVEL 1 GOTO PRESSEDNO
  36.                 ECHO You pressed Y or y.
  37.                 GOTO end
  38.                 :PRESSEDNO
  39.                 ECHO You pressed N or n
  40.                 :end
  41.  
  42.             NOTES:
  43.  
  44.                     ASK accepts only Y, y, N, or n as a
  45.                     response in this version.
  46.  
  47.  
  48.                                                      6-34a
  49.  
  50.  
  51. SIG/Access:
  52.