Add LInux Cheatsheet
This commit is contained in:
parent
6eb1ec8fa6
commit
e08bfb3c1a
17
cheat/linux.md
Normal file
17
cheat/linux.md
Normal file
@ -0,0 +1,17 @@
|
||||
# How to show and change a key binding
|
||||
|
||||
## key bindings
|
||||
* Press `CTRL + V`
|
||||
* Type the key for which you want to change the binding
|
||||
* The prompt will display the character sequence produced by that key.
|
||||
e.g : if after step 1 you press F12, you can get something like `^[[24~`
|
||||
(More info : [In bash, how do I bind a function key to a command?](https://stackoverflow.com/a/4201274/2309958) and [Delete keymap and completely disable key in zsh](https://unix.stackexchange.com/a/320432/220566) )
|
||||
|
||||
## create a binding :
|
||||
* `bind '"\e[24~":"~"'`
|
||||
* `bind '"\e[24~":""'`
|
||||
* `bind '"\e[24~":"who"'`
|
||||
* `bind '"\e[24~":"ssh hostname\n"'`
|
||||
|
||||
## remove a binding :
|
||||
* `bind -x '"\e[24~":""'`
|
Loading…
Reference in New Issue
Block a user