@echo off
set /p input="Write something, it will be used in the command "echo""
echo %input%
pause
if i get what you want, this works fine. you can use %input% in other commands too.
@echo off
echo Write something, it will be used in the command "echo"
set /p input=""
cls
echo %input%
pause