हां, आप बाइंड कमांड का उपयोग कर सकते हैं
bind '"\ey"':"\"less \C-m\""
Alt-e को कम कमांड में मैप करता है और इसे निष्पादित करता है (\ Cm aka Ctrl-m के साथ)
शायद के लिए | आपको इससे बचने की जरूरत है।
bind '"\ey"':"\"\|less \C-m\""
यदि आप इसे केवल कमांड लाइन में जोड़ना चाहते हैं तो * \ Cm \ "" हटा दें
सावधान रहें क्योंकि पहले से ही कुछ बाइंडिंग परिभाषित हैं:
Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + L Clears the Screen, similar to the clear command
Ctrl + U Clears the line before the cursor position. If you are at the end of the line, clears the entire line.
Ctrl + H Same as backspace
Ctrl + R Let’s you search through previously used commands
Ctrl + C Kill whatever you are running
Ctrl + D Exit the current shell
Ctrl + Z Puts whatever you are running into a suspended background process. fg restores it.
Ctrl + W Delete the word before the cursor
Ctrl + K Clear the line after the cursor
Ctrl + T Swap the last two characters before the cursor
Esc + T Swap the last two words before the cursor
Alt + F Move cursor forward one word on the current line
Alt + B Move cursor backward one word on the current line
Tab Auto-complete files and folder names
नियंत्रण कुंजी, जैसा कि आप ऊपर देख सकते हैं, सीएम के साथ बनाई गई है, इसलिए आप निम्न कमांड को Ctrl-g के साथ शुरू कर सकते हैं, निम्नानुसार:
बाइंड "" \ "Cg": "\" \ | कम * \ Cm \ ""
Alt (केवल ALT के लिए) के लिए कुंजी कोड प्राप्त करने के लिए, आप शेल से रीड कमांड का उपयोग कर सकते हैं:
@~$ read
^[y
^ [y \ _ के बराबर है
अधिक जानकारी के लिए, इस सवाल का जवाब भी stackoverflow में दिया गया था:
/programming/4119991/bash-call-script-with-customized-keyboard-shortcuts