(view source code of usrinp.bat as plain text)
@ECHO OFF
:: Obtaining user input in Windows NT:: with the use of the FORMAT command:: posted August 20,1999:: Author: Walter Zackery:: Adapted by Rob van der Woude:: (no longer uses temporary file):: http://www.robvanderwoude.comSET INPUT=
CLS
ECHO\
ECHO Enter your input string and press ENTER when done.
ECHO\
FOR /F "tokens=5* delims= " %%A IN ('FORMAT /F:160 A: ^| FIND "..."') DO SET INPUT=%%B
SET INPUT
page last modified: 2025-10-11; loaded in 0.0059 seconds