By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!@SETLOCAL
@ECHO OFF
set _UpOneLine=`^e[A`
set _DownOneLine=`^e[B`
set _SaveCursor=`^e[s`
set _RestoreCursor=`^e[u`
set _UnderLine=`^e[4m`
set _Inverse=`^e[7m`
set _Italic=`^e[3m`
set _Bold=`^e[1m`
set _Reset=`^e[0m`
set _SuperScript=`@char[0x00B2]`
echo %_Underline``This is underlined.``%_Reset
color bright green on black
echo.
echo %_Inverse``This is inverse.``%_Reset
color bright green on black
echo.
rem Italic does not work in stand-alone tcc.exe
rem Italic does work in Windows Terminal
echo %_Italic``This is italic.``%_Reset
color bright green on black
echo _conpty: %_conpty
echo Windows Terminal
echo _ver : %_4ver
echo X%@char[0x00B2] + H%@char[0x2082]O
ENDLOCAL