@echo off
echo Raw input = //what you want them to type in
set /p Raw= %=% //the input
cls
TYPE nul >example.txt //makes the txt file
echo Input was = %Raw% > example.txt //what it types into the txt file
pause
end
echo Raw input = //what you want them to type in
set /p Raw= %=% //the input
cls
TYPE nul >example.txt //makes the txt file
echo Input was = %Raw% > example.txt //what it types into the txt file
pause
end