在Windows操作系统上,当在DOS命令窗口中运行SQL*Plus的时候,可以使用向上,向下键来跳回之前已经执行过的SQL语句.你可以根据需要修改他们,然后按Enter键重新提交执行.

然而,当在Linux Shell中运行SQL*Plus的时候,并不提供浏览历史命令行的功能.
为了在Linux中达到同样的目的,你可以安装rlwrap,这个程式本身是个Shell,可以运行任何你提供给它的命令包括参数,并添加命令历史浏览功能.The rlwrap program is under the GPL license.
一:安装readline  

[root@oracle11g ~]#yum install readline*



二:安装rlwrap
Download:http://utopia.knoware.nl/~hlub/uck/rlwrap/
[root@oracle11g ~]# tar -zxvf rlwrap-0.30.tar.gz
[root@oracle11g ~]# cd rlwrap-0.30
[root@oracle11g rlwrap-0.30]# ./configure
[root@oracle11g rlwrap-0.30]# make
[root@oracle11g rlwrap-0.30]# make install
[root@oracle11g rlwrap-0.30]# rlwrap
Usage: rlwrap [options] command ...
Options:   www.2cto.com  
 -a[password:]              --always-readline[=password:]
 -A                         --ansi-colour-aware
 -b <chars>                 --break-chars=<chars>
 -c                         --complete-filenames
 -C <name|N>                --command-name=<name|N>
 -D <0|1|2>                 --history-no-dupes=<0|1|2>
 -f <completion list>       --file=<completion list>
 -F <format string>         --history-format=<format string>
 -h                         --help
 -H <file>                  --history-filename=<file>
 -i                         --case-insensitive
 -l <file>                  --logfile=<file>
 -n                         --no-warnings
 -p[ANSI colour spec]       --prompt-colour[=ANSI colour spec]
 -P <input>                 --pre-given=<input>
 -q <chars>                 --quote-characters=<chars>
 -m[newline substitute]     --multi-line[=newline substitute]
 -r                         --remember
 -v                         --version
 -s <N>                     --histsize=<N> (negative: readonly)
 -t <name>                  --set-term-name=<name>
bug reports, suggestions, updates:
http://utopia.knoware.nl/~hlub/uck/rlwrap/
[root@oracle11g rlwrap-0.30]# vi /home/oracle/.bash_profile
添加
alias sqlplus='rlwrap sqlplus'
alias rman='rlwrap rman'