在Linux下使用SQL*PLUS发现无法像bush一样上下翻页,也不能退格,只要安装rlwrap即可实现以上功能:
一、安装准备:
首先需要安装readline包和libtermcap-devel包:
[root@RAC1 Server]# rpm -ivh readline-5.1-1.1.x86_64.rpm
[root@RAC1 Server]# rpm -ivh readline-devel-5.1-1.1.x86_64.rpm
[root@RAC1 Server]# rpm -ivh libtermcap-devel-2.0.8-46.1.x86_64.rpm
二、下载安装
Download:
http://utopia.knoware.nl/~hlub/uck/rlwrap/
[root@RAC1 ~]# tar -zxvf rlwrap-0.30.tar.gz
[root@RAC1 ~]# cd rlwrap-0.30
三、编译安装
[root@RAC1 rlwrap-0.37]# ./configure
[root@RAC1 rlwrap-0.37]# make
[root@RAC1 rlwrap-0.37]# .make install
[root@RAC1 rlwrap-0.30]# rlwrap
Usage: rlwrap [options] command ...
Options:
-a[password:] --always-readline[=password:]
-A --ansi-colour-aware
-b --break-chars=
-c --complete-filenames
-C --command-name=
-D --history-no-dupes=
-f --file=
-F --history-format=
-h --help
-H --history-filename=
-i --case-insensitive
-l --logfile=
-n --no-warnings
-p[ANSI colour spec] --prompt-colour[=ANSI colour spec]
-P --pre-given=
-q --quote-characters=
-m[newline substitute] --multi-line[=newline substitute]
-r --remember
-v --version
-s --histsize= (negative: readonly)
-t --set-term-name=
bug reports, suggestions, updates:
http://utopia.knoware.nl/~hlub/uck/rlwrap/
[root@RAC1 rlwrap-0.30]# vi /home/oracle/.bash_profile
添加
alias sqlplus='rlwrap sqlplus'
alias rman='rlwrap rman'
这样就可以正常使用sqlplus的上翻下翻退格等功能