2011-04-15 60 views
2

如何獲得鍵綁定以導致在命令行中插入任意文本?在zsh我這樣做:Bash - 將鍵綁定到字符串(不是函數)

bindkey -s "^[m" 'myspecialscript ' 

在bash中,是否有相當於?沒有內置的功能會做我想要的。

+0

http://superuser.com/questions/186985/linux-server-terminal-keyboard-shortcuts-to-run-commands – 2011-04-15 18:37:20

回答

2

bind '"\e[[E": "/home/yourscript.sh\n"'結合F5與您的關鍵PREF

+0

良好,即更換第一部分作品。我不知道爲什麼我沒有早點嘗試。 – 2011-04-15 21:04:15

相關問題