You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
625 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# bind
## 说明
**bind命令** 用于显示和设置命令行的键盘序列绑定功能。通过这一命令可以提高命令行中操作效率。您可以利用bind命令了解有哪些按键组合与其功能也可以自行指定要用哪些按键组合
## 选项
```markdown
-d显示按键配置的内容
-f<按键配置文件>:载入指定的按键配置文件
-l列出所有的功能
-m<按键配置>:指定按键配置
-q<功能>:显示指定功能的按键
-v列出目前的按键配置与其功能
```
## 实例
```bash
bind -x '"\C-l":ls -l' #直接按 CTRL+L 就列出目录
```