Backspace character weirdness

我的未来我决定 提交于 2019-11-26 17:01:37

问题


I wonder why backspace character in common Linux terminals does not actually erase the characters, when printed (which normally works when typed)..

This works as expected:

$ echo -e "abc\b\b\bxyz"
xyz

(\b evaluates to backspace, can be inserted also as Ctrl+V Ctrl+H - rendered as ^H (0x08))

but when there are less characters after the backspaces, the strange behavior is revealed:

$ echo -e "abc\b\b\bx"
xbc

it behaves like left arrow keys instead of backspace:

$ echo -e "abc\e[D\e[D\e[Dx"
xbc

erase line back works normally:

$ echo -e "abc\e[1Kx"
x

In fact, when I type Ctrl+V Backspace in terminal, ^? (0x7f) is yielded instead of ^H, this is Del ascii character, but Ctrl+V Del produces <ESC>[3~, but it is another story..

So can someone explain why printed backspace character does not erase the characters?

(My environment is xterm Linux and some other terminal emulators, $TERM == xterm, tried vt100, Linux as well)


回答1:


What you are seeing is correct. Backspace or ^H moves the cursor to the left, no erasing. To erase a character, you need to output ^H ^H (Backspace-Space-Backspace).


To answer your comment - Backspace is defined that way in the VT100/ANSI family of terminals, from which a lot of terminal control code sequences borrow. See the VT100 user manual here which defines the function of BS as "Moves cursor to the left one character position, unless it is at the left margin, in which case no action occurs". In other words it's a quirk of history :)

As to why it was defined this way initially - I guess it's more flexible to have a non destructive cursor movement control code, as destructive backspace can be implemented as shown above.



来源:https://stackoverflow.com/questions/2856344/backspace-character-weirdness

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!