bash中的“1B63”是什么意思?

What does "1B63" mean in bash?

当我在 bash 中打印 0x1b63 的字符串值时,屏幕清晰(与 tput reset 结果完全一样):

按下 Enter 按钮后,我们有:

这是怎么回事?

这是 ANSI 转义序列。 wikipedia

上有一些列表

\x1b 表示 ESC \x63 是小写 c

在那个页面 ESC c 显示为

RIS – Reset to Intitial State Resets the device to its original state. This may include (if applicable): reset graphic rendition, clear tabulation stops, reset to default font, and more.

所以终端会清空。这与 bash 或 python 无关,而是您 运行 所在的终端。