readline-sync/lib/read.bat

12 lines
157 B
Batchfile
Raw Normal View History

@echo off
setlocal
2014-07-12 00:37:25 +02:00
if "%1"=="noechoback" (
set /p LINE=<CON >NUL
echo; >CON
) else (
set /p LINE=<CON >CON
)
set /p ="'%LINE%'"<NUL
endlocal
exit /b 0