Latest web development tutorials

Linux loadkeys command

Linux command Daquan Linux command Daquan

Linux loadkeys command changes linux keyboard driver translates keyboard input process in accordance with one keyboard definition table. Please refer to the detailed description dumpkeys.

grammar

loadkeys [ -d --default ] [ -h --help ] [ -q --quiet ] [ -v --verbose [ -v --verbose ]...] [ -m --mktable ] [ -c --clearcompose ] [ -s --clearstrings ] [ filename... ]

Parameters:

  • -v --verbose: print detailed information, you can repeat to increase the level of detail.
  • -q --quiet: Do not display any messages.
  • -c --clearcompose: remove all composite definitions.
  • -s --clearstrings: the definition of a given string table Clear.

Examples

定义按键组合
<pre>
# loadkeys 
control alt keycode 88 = F80 //现确定键代码
string F80="w3cschool.cc" //给变变量设定值
//按下 Ctrl + D键 确定输入

//效果:按下 Ctrl +Alt + F12 输出 Lx138.Com

# dumpkeys --funcs-only //显示功能键

……省略部分结果
string F3 = "\033[[C"
string F4 = "\033[[D"
string F5 = "\033[[E"
string F6 = "\033[17~"
string F7 = "\033[18~"
string F8 = "\033[19~"
string F9 = "\033[20~"
string F10 = "\033[21~"
string F11 = "\033[23~"
string F12 = "\033[24~"
string F13 = "\033[25~"
string F14 = "\033[26~"
string F15 = "\033[28~"
string F16 = "\033[29~"
string F17 = "\033[31~"
string F18 = "\033[32~"
string F19 = "\033[33~"
string F20 = "\033[34~"
string Find = "\033[1~"
string Insert = "\033[2~"
string Remove = "\033[3~"
string Select = "\033[4~"
string Prior = "\033[5~"
string Next = "\033[6~"
string Macro = "\033[M"
string Pause = "\033[P"
string F80 = "w3cschool.cc"

Linux command Daquan Linux command Daquan