diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-12-18 18:31:04 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-12-18 18:31:04 +0000 |
commit | d781ffbe09451f0cce880a010b2d8f5f09047f6f (patch) | |
tree | d621d28ecb9b6a03e2368f745aa6d47abbfa4b77 /chapter07/inputrc.xml | |
parent | b78c7479d4b642d7aea70144b1fbd6cffe26dea3 (diff) |
Chapter07 indentation.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7230 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07/inputrc.xml')
-rw-r--r-- | chapter07/inputrc.xml | 43 |
1 files changed, 24 insertions, 19 deletions
diff --git a/chapter07/inputrc.xml b/chapter07/inputrc.xml index 61418c129..5c5ce2278 100644 --- a/chapter07/inputrc.xml +++ b/chapter07/inputrc.xml @@ -1,31 +1,37 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [ +<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" + "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [ <!ENTITY % general-entities SYSTEM "../general.ent"> %general-entities; ]> + <sect1 id="ch-scripts-inputrc"> -<title>Creating the /etc/inputrc File</title> -<?dbhtml filename="inputrc.html"?> + <?dbhtml filename="inputrc.html"?> + + <title>Creating the /etc/inputrc File</title> -<indexterm zone="ch-scripts-inputrc"><primary sortas="e-/etc/inputrc">/etc/inputrc</primary></indexterm> + <indexterm zone="ch-scripts-inputrc"> + <primary sortas="e-/etc/inputrc">/etc/inputrc</primary> + </indexterm> -<para>The <filename>inputrc</filename> file handles keyboard mapping for -specific situations. This file is the startup file used by Readline — the -input-related library — used by Bash and most other shells.</para> + <para>The <filename>inputrc</filename> file handles keyboard mapping for + specific situations. This file is the startup file used by Readline — the + input-related library — used by Bash and most other shells.</para> -<para>Most people do not need user-specific keyboard mappings so the command -below creates a global <filename>/etc/inputrc</filename> used by everyone who -logs in. If you later decide you need to override the defaults on a per-user -basis, you can create a <filename>.inputrc</filename> file in the user's home -directory with the modified mappings.</para> + <para>Most people do not need user-specific keyboard mappings so the command + below creates a global <filename>/etc/inputrc</filename> used by everyone who + logs in. If you later decide you need to override the defaults on a per-user + basis, you can create a <filename>.inputrc</filename> file in the user's home + directory with the modified mappings.</para> -<para>For more information on how to edit the <filename>inputrc</filename> file, -see <command>info bash</command> under the <emphasis>Readline Init File</emphasis> -section. <command>info readline</command> is also a good source of information.</para> + <para>For more information on how to edit the <filename>inputrc</filename> + file, see <command>info bash</command> under the <emphasis>Readline Init + File</emphasis> section. <command>info readline</command> is also a good + source of information.</para> -<para>Below is a generic global <filename>inputrc</filename> along with comments -to explain what the various options do. Note that comments cannot be on the same -line as commands. Create the file using the following command:</para> + <para>Below is a generic global <filename>inputrc</filename> along with comments + to explain what the various options do. Note that comments cannot be on the same + line as commands. Create the file using the following command:</para> <screen><userinput>cat > /etc/inputrc << "EOF" <literal># Begin /etc/inputrc @@ -74,4 +80,3 @@ set bell-style none EOF</userinput></screen> </sect1> - |