一個例子...
@echo off
setlocal
set /p "_myvar=what is your name?"
echo HELLO!>file.txt
echo %_myvar%!>>file.txt
echo done!
pause
type file.txt
endlocal
exit
現在 file.txt 看起來像:
HELLO!
John Smith!
(假設你輸入 John Smith
作為你的名字。)
現在你的批處理檔案的控制檯如下所示:
what is your name?John Smith
done!
Press any key to continue...
HELLO!
John Smith!
(它應該快速退出,以至於你可能無法在提示後看到任何內容)