JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Fix Backspace and Delete characters
authorRoberto E. Vargas Caballero <k0ga@shike2.com>
Fri, 11 Apr 2014 13:08:37 +0000 (15:08 +0200)
committerRoberto E. Vargas Caballero <k0ga@shike2.com>
Fri, 11 Apr 2014 13:08:37 +0000 (15:08 +0200)
Backspace key must generate the backspace character (\010) and
Delete key must generate the delete character (\0177). In
some systems the kernel configuration for erasing previous character
is \0177, so some programs (for example cat, ed, mail, ...), can not
understand the correct meaning of backspace. In this cases it is only
needed this command:

stty erase \b


No differences found