inputrc.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-scripts-inputrc">
  7. <title>Creating the /etc/inputrc File</title>
  8. <?dbhtml filename="inputrc.html"?>
  9. <indexterm zone="ch-scripts-inputrc"><primary sortas="e-/etc/inputrc">/etc/inputrc</primary></indexterm>
  10. <para>The <filename>/etc/inputrc</filename> file deals with mapping
  11. the keyboard for specific situations. This file is the start-up file
  12. used by <application>Readline</application>, the input-related
  13. library used by <application>Bash</application> and most other
  14. shells.</para>
  15. <para>For more information, see the bash info page, section
  16. <emphasis>Readline Init File</emphasis>. The readline info page is
  17. also a good source of information.</para>
  18. <para>Global values are set in <filename>/etc/inputrc</filename>.
  19. Personal user values are set in <filename>~/.inputrc</filename>. The
  20. <filename>~/.inputrc</filename> file will override the global settings
  21. file. A later page sets up Bash to use
  22. <filename>/etc/inputrc</filename> if there is no
  23. <filename>.inputrc</filename> for a user when
  24. <filename>/etc/profile</filename> is read (usually at login). To make
  25. the system use both, or to negate global keyboard handling, it is a
  26. good idea to place a default <filename>.inputrc</filename> into the
  27. <filename class="directory">/etc/skel</filename> directory for use
  28. with new users.</para>
  29. <para>Below is a base <filename>/etc/inputrc</filename>, along with
  30. comments to explain what the various options do. Note that comments
  31. cannot be on the same line as commands.</para>
  32. <para>To create the <filename>.inputrc</filename> in <filename
  33. class="directory">/etc/skel</filename> using the command below, change
  34. the command's output to <filename
  35. class="directory">/etc/skel/.inputrc</filename> and be sure to
  36. check/set permissions afterward. Copy that file to
  37. <filename>/etc/inputrc</filename> and the home directory of any user
  38. already existing on the system, including <emphasis>root</emphasis>,
  39. that needs a private version of the file. Be certain to use the
  40. <parameter>-p</parameter> parameter of <command>cp</command> to
  41. maintain permissions and be sure to change owner and group
  42. appropriately.</para>
  43. <screen><userinput>cat &gt; /etc/inputrc &lt;&lt; "EOF"
  44. <literal># Begin /etc/inputrc
  45. # Modified by Chris Lynn &lt;roryo@roryo.dynup.net&gt;
  46. # Make sure we don't output everything on the 1 line
  47. set horizontal-scroll-mode Off
  48. # Enable 8bit input
  49. set meta-flag On
  50. set input-meta On
  51. # Turns off 8th bit stripping
  52. set convert-meta Off
  53. # Keep the 8th bit for display
  54. set output-meta On
  55. # none, visible or audible
  56. set bell-style none
  57. # All of the following map the escape sequence of the
  58. # value contained inside the 1st argument to the
  59. # readline specific functions
  60. "\eOd": backward-word
  61. "\eOc": forward-word
  62. # for linux console
  63. "\e[1~": beginning-of-line
  64. "\e[4~": end-of-line
  65. "\e[5~": beginning-of-history
  66. "\e[6~": end-of-history
  67. "\e[3~": delete-char
  68. "\e[2~": quoted-insert
  69. # for xterm
  70. "\eOH": beginning-of-line
  71. "\eOF": end-of-line
  72. # for Konsole
  73. "\e[H": beginning-of-line
  74. "\e[F": end-of-line
  75. # End /etc/inputrc</literal>
  76. EOF</userinput></screen>
  77. </sect1>