home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / vol9n02.zip / GETREPLY.BAT < prev    next >
DOS Batch File  |  1989-08-31  |  355b  |  12 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO What is your answer?  Type it in on a single line, then press
  4. ECHO Ctrl-Z followed by the Enter key
  5. COPY ANSWER.DAT+CON ANSWER.BAT > NUL
  6. CALL ANSWER.BAT
  7. DEL ANSWER.BAT
  8. ECHO Your answer was "%answer%".  I can use it and re-use it
  9. ECHO within this batch file -- see: "%answer%".
  10. ECHO Now I will clear your answer:
  11. SET answer=
  12.