Untuk mengetahui tentang pengikatan kunci.
Dalam 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).
Atau dengan info
:
info bash --index-search=complete-into-braces
(atau info bash
dan gunakan indeks dengan selesai ( i
kunci))
Namun perhatikan bahwa halaman info yang dibuat sebelumnya yang datang dengan bash-4.3 sumber setidaknya tidak ada beberapa entri indeks termasuk untuk complete-into-braces
, jadi kecuali OS Anda membangun kembali halaman info dari sumber texinfo, perintah di atas tidak akan berfungsi.
Di 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.
Atau dengan man
asumsi less
pager seperti untuk bash
:
LESS='+/copy-region-as-kill' man zshall
zsh
juga memiliki describe-key-briefly
yang dapat Anda ikat pada kunci atau urutan tombol, seperti di Ctrl+XCtrl+Hbawah ini:
bindkey '^X^H' describe-key-briefly
Kemudian Anda mengetik Ctrl+XCtrl+Hdiikuti dengan tombol atau kombinasi tombol untuk menggambarkan. Misalnya, mengetikkan Ctrl+XCtrl+Hdua kali akan ditampilkan di bawah prompt:
"^X^H" is describe-key-briefly
Di tcsh
Itu pada dasarnya sama dengan zsh
kecuali yang tcsh
tidak memiliki halaman info.
> bindkey | grep -a P
"^P" -> up-history
"^[P" -> history-search-backward
> env LESS=+/history-search-backward man tcsh
[...]
Dalam fish
:
> bind | grep -F '\ec'
bind \ec capitalize-word
> help commands
Yang harus memulai browser web pilihan Anda. Dan cari capitalize-word
di sana.