linux rlwrap

margiex發表於2016-12-21

無意中發現了rlwrap,終於可以在linux下使用方向鍵上下翻頁輸入過的語句了。

比如sqlplus or ggsci中使用。
 

如果是ubuntu,則在software center中可以直接安裝rlwrap。
如果是centos, 需要先安裝readline,在安裝光碟中已經有此軟體,安裝即可。
然後下載rlwrap
https://github.com/hanslub42/rlwrap/
結果不能直接./configure,需要先安裝如下軟體
sudo apt-get install libtool  
之後為了保證不出錯 ,還需要安裝一個工具:sudo apt-get install libsysfs-dev
在rlwrap-xx.xx目錄下執行
autoconf生成configure檔案
如果報錯:  Cannot find install-sh, install.sh, or shtool in ac-aux
則使用再配置
autoreconf -vif
通過之後再 ./configure即可。
最後就是make, make install
然後新增如下行到.bash_profile
alias sqlplus='rlwrap sqlplus'


相關文章