Como faço para definir uma variável (por prompt) no MSDOS 7.1

1

No CMD, eu poderia fazer Set /P ASK=REPEAT e solicitaria ao usuário ASK . Como faço isso em arquivos em lote do MSDOS? (Não, não os que são executados no NT, mas os que são executados no MSDOS.)

Btw: 'Set / P' é uma resposta do NT, então não funciona.

: (

    
por RookieTEC9 31.10.2015 / 03:01

3 respostas

1

Que tal um deles? . .

Recurso: link

Exemplo test.bas poderia usar: C:\DOS71\QBASIC /run test.bas

REM Get the users input.
INPUT "Enter the system Serial Number"; reply$

REM Show the value of the reply.
PRINT reply$

REM Return to the system.
SYSTEM

OR

editvar -p "Enter the system Serial Number." INPUT
rem temp.exe /ss %INPUT%
md %INPUT%

UPDATE

Emulador on-line: link

Recurso: link

Editor is a full screen text editor. QBasic is a program that reads instructions written in Basic and interprets them into executable computer code. 

The EDIT command starts Editor from the command prompt. QBASIC starts the QBasic Interpreter from the command prompt. Both Editor and QBasic may be executed with a switch or combination of switches to enhance or modify their performance. The following is a description of the switches available and how they affect Editor and QBasic:
    Switch   Description
   ------   -----------

   /B       Displays Editor or QBasic in black and white. This switch
            should be used to run Editor or QBasic on a monochrome
            monitor with a color graphics card. If the Editor or
            QBasic pull-down menus do not show the short cut keys on a
            CGA monitor, then use the /B switch when starting Editor
            or QBasic.

   /G       Use this switch with a CGA monitor to provide the fastest
            screen updating.

   /H       Use this switch to display the maximum number of lines on
            the screen that the monitor supports.

   /NOHI    Editor and QBasic are designed for 16 color monitors, but
            this switch allows Editor or QBasic to function on an
            eight color monitor. If Editor or QBasic pull-down menus
            do not show the short cut keys on a system that does not
            support bold characters, use the /NOHI switch when
            starting Editor or QBasic.

The following switches may be used only with QBasic:
   Switch     Description
   ------     -----------

   /EDITOR    Invokes Editor.

   /MBF       Converts the built-in functions MKS$,MKD$,CVS$, and CVD
              to MKSMBF$, MKDMBF$, CVSMBF, and CVDMBF, respectively.

   /RUN       Runs a specified Basic program before displaying it.

To start Editor with the /NOHI switch, type the following command at the command prompt:
edit /nohi
To start QBasic and run the program MYPROG.BAS, type the following at the command prompt:
qbasic /run myprog.bas
Reference(s): 

"MS-DOS User's Guide and Reference," versions 5.0 and 5.0a, pages 459, 547
    
por 31.10.2015 / 03:55
2

Esta é uma maneira antiga de fazer a entrada com uma versão mais antiga do DOS. Eu não tenho a versão mais antiga do DOS, então é difícil para eu testar, no entanto, darei o código e a página que mostra várias maneiras de fazer entradas para versões mais antigas do DOS. Aqui está o código.

ECHO Enter some input, and press Enter when ready . . .
ECHO ?[13;0;64;13p
COPY CON USRINPUT.TMP
ECHO ?[13;13p
CLS
ECHO You typed:
TYPE USRINPUT.TMP

Confira este site para mais exemplos.

Arquivos em lote - Solicitar entrada de usuário

    
por 31.10.2015 / 03:12
1

ESCOLHA é um comando que existe no MSDOS 6.22 e presumo em 7.1 também, embora a sintaxe exata possa variar. Exemplo:

CHOICE /C:YN /T:N,10 Do you want to continue
IF ERRORLEVEL 2 GOTO :eof
ECHO You chose Y, continuing
:eof
A opção

/ C permite especificar opções permitidas / T opção permite que você especifique uma opção padrão e um tempo limite

Experimente CHOICE /? para obter detalhes sobre sua versão do DOS.

    
por 31.10.2015 / 09:07