In FreeBSD 12.1 backspace in terminal only deletes one byte of multi-byte character.
For example:
Where 'ы' is a Russian letter (D18B in hexadecimal form). You may see that only second byte of multi-byte character was deleted by backspace.
For example:
Code:
# cat > /tmp/test
tы<backspace>t
# cat /tmp/test
t�t
# hexdump -C /tmp/test
74 d1 74 0a
Where 'ы' is a Russian letter (D18B in hexadecimal form). You may see that only second byte of multi-byte character was deleted by backspace.
Last edited by a moderator: