1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/bind.md

25 lines
399 B
Markdown
Raw Normal View History

2024-10-10 15:57:40 +03:00
# bind
> Bash builtin to manage bash hotkeys and variables.
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-bind>.
2024-10-10 15:57:40 +03:00
- List all bound commands and their hotkeys:
`bind {{-p|-P}}`
- Query a command for its hotkey:
`bind -q {{command}}`
- Bind a key:
`bind -x '"{{key_sequence}}":{{command}}'`
- List user defined bindings:
`bind -X`
- Display help:
`help bind`