在linux上使用rlwrap实现像dos功能使用上下键查看命令

linux 上的oracle sqlplus 不能利用 上, 下 键来查看命令而苦恼. rlwarp 工具可以帮助我们解决这个问题.
官方下载地址:http://utopia.knoware.nl/~hlub/uck/rlwrap/
首先需要安装readline安装包,光盘里提供了这个包,而readline-devel包依赖于libtermcap-devel包。
安装过程:

[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'

source .bash_profile 在修改好 .bash_profile 文件后,直接运行这个命令,就可以直接让环境变量的修改生效了。
这样就大公告成了.

你可能感兴趣的:(linux,包,blank,光盘,官方下载)