Linux下面Sqlplus左右鍵亂碼的問題

wzq609發表於2016-01-14

在WINDOS下面操作Sqlplus下面可以很方便的進行左右鍵,上下鍵的操作。但是在Linux下面這樣操作就會亂碼,一旦輸入錯誤就很麻煩,雖然可以安裝Ctrl+Backspace可以實現後退刪除的功能,但始終不方便;

透過rlwrap可以很方便的實現,上下檢視歷史命令,左右修改的問題。

1、安裝步驟如下:

1.1 安裝libtermcap-devel和readline-devel兩個包

yum install -y readline-devel libtermcap-devel

 

1.2 安裝rlwrap

wget "~hlub/rlwrap/rlwrap-0.37.tar.gz"
tar -xvf rlwrap-0.37.tar.gz
cd rlwrap-0.37
./configure

&& make

&& make install

 

1.3 命令的使用

[oracle@ekpjdbtest ~]$ 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>

 

2、設定的方法

切換到oracle使用者的目錄下面,

vi /home/oracle/.bash_profile

ORACLE_BASE=/oracle
ORACLE_HOME=$ORACLE_BASE/oracle11
alias sqlplus='rlwrap sqlplus' 

配置檔案生效後,便可以很便捷的使用sqlplus了。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12679300/viewspace-1976640/,如需轉載,請註明出處,否則將追究法律責任。

相關文章