
BAT運行結果為何一閃而過沒有pause
寫了上面這些代碼,當運行的時候,為什么運行結果一閃而過,不是有pause回顯結果嗎??謝謝各位.nclick="copycode($('code0'));">復制代碼
- @echo off
- echo 1212>test.txt
- echo 3234^>>test.txt
- echo 3232>>test.txt
- echo dfdf>>test.txt
- for /f delims= %%i in(test.txt)do echo %%~i
- pause

