답변:
예, 바인드 명령을 사용할 수 있습니다
bind '"\ey"':"\"less \C-m\""
Alt-e를 less 명령에 매핑하고 실행합니다 (\ 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
위에서 볼 수 있듯이 Control 키는 Cm으로 만들어 졌으므로 다음과 같이 Ctrl-g를 사용하여 less 명령을 시작할 수 있습니다.
' "\ Cg"'바인딩 : "\"\ | less * \ Cm \ ""
Alt (ALT 만 해당)의 키 코드를 얻으려면 쉘에서 read 명령을 사용할 수 있습니다.
@~$ read
^[y
^ [y는 \ ey와 같습니다
자세한 내용은이 질문에 대한 답변도 있습니다.
/programming/4119991/bash-call-script-with-customized-keyboard-shortcuts