2004-06-10 12:31:35 +08:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
|
|
%general-entities;
|
|
|
|
]>
|
|
|
|
|
2003-09-22 00:44:58 +08:00
|
|
|
<sect1 id="postlfs-config-inputrc" xreflabel="/etc/inputrc">
|
2004-08-10 12:23:09 +08:00
|
|
|
<sect1info>
|
2004-08-10 12:25:57 +08:00
|
|
|
<othername>$LastChangedBy$</othername>
|
|
|
|
<date>$Date$</date>
|
2004-08-10 12:23:09 +08:00
|
|
|
</sect1info>
|
2004-05-07 04:30:53 +08:00
|
|
|
<?dbhtml filename="inputrc.html"?>
|
2002-07-08 04:28:42 +08:00
|
|
|
<title>/etc/inputrc</title>
|
|
|
|
|
2003-08-22 23:37:27 +08:00
|
|
|
<para><filename>Inputrc</filename> deals with the mapping of the keyboard for
|
2003-05-05 01:39:22 +08:00
|
|
|
certain situations. This file is the start-up file used by
|
2004-05-30 17:16:17 +08:00
|
|
|
<application>readline</application>, the input related library used by
|
2004-05-30 13:30:47 +08:00
|
|
|
<application>bash</application> and most other shells.</para>
|
2002-12-24 11:01:04 +08:00
|
|
|
|
2004-05-31 03:08:32 +08:00
|
|
|
<para>For more information see <command>info bash</command>—<emphasis
|
2003-05-05 01:39:22 +08:00
|
|
|
role="strong">Node: Readline Init</emphasis> file as well as
|
|
|
|
<command>info readline</command>. There is a lot that can be done with this
|
|
|
|
one rc file.</para>
|
2002-12-24 11:01:04 +08:00
|
|
|
|
2003-08-22 23:37:27 +08:00
|
|
|
<para>Global values are set in <filename>/etc/inputrc</filename>.
|
|
|
|
Personal user values are set in <filename>~/.inputrc</filename>. The
|
|
|
|
<filename>~/.inputrc</filename> file will override the global settings
|
|
|
|
file. A later page sets up <application>Bash</application> to use
|
|
|
|
<filename>/etc/inputrc</filename> if there is no
|
|
|
|
<filename>.inputrc</filename> for a user when
|
|
|
|
<filename>/etc/profile</filename> is read (usually at login). If you
|
|
|
|
want your system to use both, or don't want <emphasis>global</emphasis>
|
|
|
|
keyboard handling, it is a good idea to place a default
|
|
|
|
<filename>.inputrc</filename> into the <filename>/etc/skel</filename>
|
|
|
|
directory for use with new users.</para>
|
2002-07-08 04:28:42 +08:00
|
|
|
|
2003-08-22 23:37:27 +08:00
|
|
|
<para>
|
|
|
|
Below is a base <filename>/etc/inputrc</filename> along with
|
|
|
|
comments to explain what the various options do. Note that comments
|
|
|
|
can <emphasis>not</emphasis> be on the same line as commands.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>If you will create an <filename>.inputrc</filename> in
|
|
|
|
<filename>/etc/skel</filename> using the command below, change the
|
|
|
|
command's output to <filename>/etc/skel/.inputrc</filename> and be
|
|
|
|
sure to check/set permissions afterward. Then you can just copy that
|
|
|
|
file to <filename>/etc/inputrc</filename> and the home directory
|
|
|
|
of any user already existing in the system, including root, that needs
|
2003-10-01 03:21:06 +08:00
|
|
|
a private version of the file. Be sure to use the <option>-p</option> parameter
|
|
|
|
of <command>cp</command> to maintain permissions and be sure to change owner and group
|
2003-08-22 23:37:27 +08:00
|
|
|
appropriately.
|
|
|
|
</para>
|
2002-07-14 03:05:24 +08:00
|
|
|
|
2003-05-05 01:39:22 +08:00
|
|
|
<screen><userinput><command>cat > /etc/inputrc << "EOF"</command>
|
|
|
|
# Begin /etc/inputrc
|
2002-12-24 11:01:04 +08:00
|
|
|
|
|
|
|
# Make sure we don't output everything on the 1 line
|
2002-07-08 04:28:42 +08:00
|
|
|
set horizontal-scroll-mode Off
|
|
|
|
|
2002-07-14 03:05:24 +08:00
|
|
|
# Enable 8bit input
|
|
|
|
set meta-flag On
|
|
|
|
set input-meta On
|
|
|
|
|
|
|
|
# Turns off 8th bit stripping
|
|
|
|
set convert-meta Off
|
|
|
|
|
|
|
|
# Keep the 8th bit for display
|
|
|
|
set output-meta On
|
|
|
|
|
|
|
|
# none, visible or audible
|
|
|
|
set bell-style none
|
2002-07-08 04:28:42 +08:00
|
|
|
|
|
|
|
# All of the following map the escape sequence of the
|
|
|
|
# value contained inside the 1st argument to the
|
|
|
|
# readline specific functions
|
|
|
|
|
|
|
|
"\eOd": backward-word
|
|
|
|
"\eOc": forward-word
|
|
|
|
|
|
|
|
# for linux console
|
|
|
|
"\e[1~": beginning-of-line
|
|
|
|
"\e[4~": end-of-line
|
|
|
|
"\e[5~": beginning-of-history
|
|
|
|
"\e[6~": end-of-history
|
|
|
|
"\e[3~": delete-char
|
|
|
|
"\e[2~": quoted-insert
|
|
|
|
|
|
|
|
# for xterm
|
|
|
|
"\eOH": beginning-of-line
|
2002-12-24 11:01:04 +08:00
|
|
|
"\eOF": end-of-line
|
|
|
|
|
2003-05-05 01:39:22 +08:00
|
|
|
# End /etc/inputrc
|
|
|
|
<command>EOF</command></userinput></screen>
|
2002-12-24 11:01:04 +08:00
|
|
|
|
2002-07-08 04:28:42 +08:00
|
|
|
</sect1>
|