在sqlplus中使用退格和上下左右

首先下载rlwrap包,可以在http://rpmfind.net上进行搜索,找和你系统相同的版本进行下载

我这里提供  红帽6企业版本64位的版本ftp://rpmfind.net/linux/epel/6/x86_64/rlwrap-0.42-1.el6.x86_64.rpm

,如果你用的Linux能联网,可以执行这条命令

wget ftp://rpmfind.net/linux/epel/6/x86_64/rlwrap-0.42-1.el6.x86_64.rpm

下载到当前目录

然后安装

rpm -ivh rlwrap-0.42-1.el6.x86_64.rpm

 

然后修改.bash_profile

[oracle@www ~]$ vim .bash_profile

在最后添加这两句话

alias sqlplus='rlwrap sqlplus'
alias rman='rlwrap rman'

 

然后愉快的进行玩耍sqlplus吧

 

你可能感兴趣的:(oracle)