Hi folks
[Please CC me, I am not on the list]
I am here at a customer who have this in profile (.cshrc):
stty erase "^H" kill "^?" intr "^C"
Backspace clears the hole command line. How is the CentOS default?
kind regards Sven
From: Sven aluoor@gmail.com I am here at a customer who have this in profile (.cshrc): stty erase "^H" kill "^?" intr "^C" Backspace clears the hole command line. How is the CentOS default?
From the man page:
erase CHAR, will erase the last character typed intr CHAR, will send an interrupt signal kill CHAR, will erase the current line
So you might want to replace 'kill' with 'erase'...
JD