当前位置: 代码迷 >> SQL >> rlwrap工具浏览sqlplus历史命令行及删除先前输入异常的字母等有关问题
  详细解决方案

rlwrap工具浏览sqlplus历史命令行及删除先前输入异常的字母等有关问题

热度:51   发布时间:2016-05-05 14:48:07.0
rlwrap工具浏览sqlplus历史命令行及删除先前输入错误的字母等问题

第一步进入 http://utopia.knoware.nl/~hlub/rlwrap/

下载 rlwrap-0.37.tar.gz

[[email protected] oracle]# tar zxvf rlwrap-0.37.tar.gz

[[email protected] rlwrap-0.37]# ./configure && make && make install

第二步检验是否安装成功

[[email protected] rlwrap-0.37]# rlwrap
Usage: rlwrap [options] command ...

Options:
? -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>
? -g? <regexp>?????????????? --forget-matching=<regexp>
? -h???????????????????????? --help
? -H? <file>???????????????? --history-filename=<file>
? -i???????????????????????? --case-insensitive
? -I???????????????????????? --pass-sigint-as-sigterm
? -l? <file>???????????????? --logfile=<file>
? -n???????????????????????? --no-warnings
? -N???????????????????????? --no-children
? -o???????????????????????? --one-shot
? -O? <regexp>?????????????? --only-cook=<regexp>
? -p[colour]???????????????? --prompt-colour[=colour]
? -P? <input>??????????????? --pre-given=<input>
? -q? <chars>??????????????? --quote-characters=<chars>
? -m[newline substitute]???? --multi-line[=newline substitute]
? -r???????????????????????? --remember
? -R???????????????????????? --renice
? -v???????????????????????? --version
? -s? <N>??????????????????? --histsize=<N> (negative: readonly)
? -S? <prompt>?????????????? --substitute-prompt=<prompt>
? -t? <name>???????????????? --set-term-name=<name>
? -w? <N>??????????????????? --wait-before-prompt=<N> (msec, <0? : patient mode)
? -z? <filter command>?????? --filter=<filter command>

bug reports, suggestions, updates:
http://utopia.knoware.nl/~hlub/uck/rlwrap/

?

配置环境变量

[[email protected] ~]$ vi .bash_profile

?

stty erase ^h
alias sqlplus='rlwrap sqlplus'
alias rman='rlwrap rman'

?

此文件末尾增加如上三句

保存

[[email protected] ~]$ source .bash_profile


设置了如下环境变量之后,那么在Linux sqlplus命令行可以浏览历史命令行的功能,和删除先前输入错误的字母等问题

  相关解决方案