키 바인딩에 대해 알아보십시오.
에서 bash
:
$ bind -p | grep -a '{'
"\e{": complete-into-braces
"{": self-insert
$ LESS='+/complete-into-braces' man bash
complete-into-braces (M-{)
Perform filename completion and insert the list of possible com‐
pletions enclosed within braces so the list is available to the
shell (see Brace Expansion above).
또는과 info
:
info bash --index-search=complete-into-braces
(또는 info bash
과 사용 인덱스 완료와을 ( i
키))
그러나 bash-4.3 소스와 함께 제공되는 사전 빌드 정보 페이지에는에 대한 정보를 포함하여 일부 색인 항목이 누락 complete-into-braces
되어 있으므로 OS가 texinfo 소스에서 정보 페이지를 다시 작성하지 않으면 위 명령이 작동하지 않습니다.
에서 zsh
$ bindkey| grep W
"^W" backward-kill-word
"^[W" copy-region-as-kill
$ info --index-search=copy-region-as-kill zsh
copy-region-as-kill (ESC-W ESC-w) (unbound) (unbound)
Copy the area from the cursor to the mark to the kill buffer.
If called from a ZLE widget function in the form 'zle
copy-region-as-kill STRING' then STRING will be taken as the text
to copy to the kill buffer. The cursor, the mark and the text on
the command line are not used in this case.
또는 호출기를 다음과 같이 man
가정하면 :less
bash
LESS='+/copy-region-as-kill' man zshall
zsh
또한 아래와 describe-key-briefly
같이 키 또는 키 시퀀스에 바인딩 할 수있는가 Ctrl+XCtrl+H있습니다.
bindkey '^X^H' describe-key-briefly
그런 다음 설명 할 Ctrl+XCtrl+H키 또는 키 조합을 입력하십시오. 예를 들어, Ctrl+XCtrl+H두 번 입력 하면 프롬프트 아래에 표시됩니다.
"^X^H" is describe-key-briefly
에서 tcsh
정보 페이지가 없다는 zsh
점을 제외하고 tcsh
는 기본적으로 동일 합니다.
> bindkey | grep -a P
"^P" -> up-history
"^[P" -> history-search-backward
> env LESS=+/history-search-backward man tcsh
[...]
에서 fish
:
> bind | grep -F '\ec'
bind \ec capitalize-word
> help commands
선호하는 웹 브라우저를 시작해야합니다. 그리고 capitalize-word
거기에서 검색하십시오 .