sqlplus 删除^H处理
1.在oracle用户下更改
2.在".profile"或者"~/.bash_profile"添加
stty erase ^H
3.wq,保存退出
stty时一个用来改变并打印终端行设置的常用命令
1 ,在命令行下,禁止输出大写的方法
stty iuclc #开启
stty -iuclc #恢复
2,在命令行下禁止输出小写
stty olcuc #开启
stty -olcuc#恢复
3,打印出终端的行数和列数
stty size
4,改变ctrl+D的方法:
stty eof "string"
系统默认是ctrl+D来表示文件的结束,而通过这种方法,可以改变!