inux上使用sqlplus时不能用Backspace来删除字符的解决


解决方法

1. #su - oracle
$stty erase ^h

2.要永久生效,可以加入到.bash_profile中

vi .bash_profile

加入一行
stty erase ^h

保存之后,重新启动linux即可生效。

3、在sqlplus登录后,可以按住Ctrl键,再删除


你可能感兴趣的:(oracle,linux)