I am ssh-ing into a server and when I am editing files, the delete key does not delete; instead it prints "^?"
How can I fix this so that the delete key actually deletes the character before the cursor?
Thanks
I am ssh-ing into a server and when I am editing files, the delete key does not delete; instead it prints "^?"
How can I fix this so that the delete key actually deletes the character before the cursor?
Thanks
At the shell:
$ stty erase ^V<delete key>
where ^V is control-V, followed by the key you wish to use as the delete key. Then, of course, press Enter.