SqlPlus 退格键 方向键 历史记录

2018年7月9日 0 条评论 1.48k 次阅读 1 人点赞

退格键

su - oracle
#echo 'stty erase ^h' >> ~/.bash_profile
#source ~/.bash_profile
echo 'stty erase ^h' >> /etc/profile
source /etc/profile

上下键 调出历史记录

#使用rlwrap回调sqlplus中执行过的命令解决
#安装依赖包
yum install readline* libtermcap-devel* -y
#添加epel源
rpm -Uvh  http://mirrors.ustc.edu.cn/epel/6/x86_64/epel-release-6-8.noarch.rpm
#http://mirrors.ustc.edu.cn/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm
#安装
yum install rlwrap -y
su - oracle
echo "alias sqlplus='/usr/bin/rlwrap sqlplus'" >> ~/.bash_profile
source ~/.bash_profile

Sevenfal

这个人太懒什么东西都没留下

文章评论(0)