在linux上使用rlwrap实现像shell的命令history

在linux 上的oracle sqlplus 不能利用 上, 下键来查看命令,md指头都敲破了,键盘都换了好几个了。

. rlwarp 工具可以帮助我们解决这个问题.

官方下载地址:http://utopia.knoware.nl/~hlub/uck/rlwrap/

安装过程:

[root@oradb temp]# tar -xvf rlwrap-0.28.tar
[root@oradb temp]# cd rlwrap-0.28
[root@oradb rlwrap-0.28]# ./configure
[root@oradb rlwrap-0.28]# make
[root@oradb rlwrap-0.28]# make install

这样就可以使用 rlwarp 了.

[oracle@oradb ~]$ rlwrap sqlplus “/ as sysdba”

这样登录数据库 , 就可以使用上 下 键查找上次执行的命令.

如果每次都需要输入 rlwrap 感觉麻烦的话 , 还可以加入到 .bash_profile 中, 就不用每次都输入了.

alias sqlplus=’rlwrap sqlplus’
alias rman=’rlwrap rman’

ok可以体验一下了。

发表评论

邮箱地址不会被公开。 必填项已用*标注