-
centos7_rlwrap-0.42.tar.gz下载
资源介绍
找到centos7 安装的iso中的 Packages的 ncurses-devel-5.9-13.20130511.el7.x86_64.rpm
rpm -ivh ncurses-devel-5.9-13.20130511.el7.x86_64.rpm
找到系统是否安装了 readline
rpm -qa | grep readline
结果 安装了 readline-6.2-9.el7.x86_64.rpm
需要在iso包中找到readline-devel-6.2-9.el7.x86_64.rpm
rpm -ivh readline-devel-6.2-9.el7.x86_64.rpm
安装完成后
解压 tar zxvf centos7_rlwrap-0.42.tar.gz
进去目录 cd centos7_rlwrap-0.42
如编译报错提示:configure:3414: error: no acceptable C compiler found in $PATH
yum -y install gcc
./configure && make && make install
安装完成后
[root@localhost rlwrap-0.42]# which rlwrap
/usr/local/bin/rlwrap
[root@localhost rlwrap-0.42]#
vi .bash_profile 添加以下内容
stty erase ^h
alias sqlplus="rlwrap sqlplus"
alias rman="rlwrap rman"