为Bash shell定义Home, Del, Insert热键

2009-05-13 16:03:05来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折


很多人习惯用bash,使用freebsd也会把系统的默认shell改为bash,默认情况下,按下键盘上的Home, Del, Insert键之后,它只会显示一些无用的信息,我们可以通过编辑/etc/profile文件来修正这个问题:
# vi /etc/profile
增加一行:
export INPUTRC=/usr/local/etc/inputrc

vi /usr/local/etc/inputrc
set meta-flag on
set input-meta on
set convert-meta off
set output-meta on
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": beginning-of-history
"\e[6~": end-of-history
"\e[3~": delete-char
"\e[2~": quoted-insert
"\e[5C": forward-word
"\e[5D": backward-word
logout、login一下再试试吧。


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/4206/showart_1807209.html

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:去掉X11 GUI支持提高VIM运行速度

下一篇:AT&T 汇编指令说明