Code: Select all
@echo off
chcp 65001> nul
for /F %%A in ('echo prompt $E ^| cmd') do set ESC=%%A
echo %ESC%[2;2H[2,2]
pause> nul
(
echo %ESC%[4;4H[4,4]
pause> nul
)
(
start "" http://example.org
echo %ESC%[6;6H[6,6]
pause> nul
)
Code: Select all
[2,2]
[4,4]
←[6;6H[6,6]
I'm not sure if this is my PC problem or Terminal bug.
Replacing command "start" to "explorer" didn't solve this problem
What are the results on your pc?