标签: bash
如何获取键绑定以导致在命令行插入任意文本?在zsh中我这样做:
bindkey -s "^[m" 'myspecialscript '
在bash中,是否有相应的?没有任何内置函数可以满足我的需求。
答案 0 :(得分:2)
bind '"\e[[E": "/home/yourscript.sh\n"'绑定到f5用你的密钥pref替换第一部分
bind '"\e[[E": "/home/yourscript.sh\n"'