fix inputrc comment bug and typo

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Mark Hymers 2002-07-13 19:05:24 +00:00
parent c7f304346e
commit 0a216f0869
2 changed files with 20 additions and 7 deletions

View File

@ -10,6 +10,9 @@ page in Chapter 1 for details on who wrote what.</para>
<itemizedlist>
<listitem><para>July 13th, 2002 [markh]: Post-LFS: Finally fix the
inputrc comments bug.</para></listitem>
<listitem><para>July 13th, 2002 [markh]: Basic Networking - Add &amp;'s
to traceroute commands.</para></listitem>

View File

@ -14,14 +14,24 @@ options do.</para>
<filename>/etc/inputrc</filename> or <filename>~/.inputrc</filename> as
appropriate. See below for more details on which to use.</para>
<para>Please note that comments can <emphasis>not</emphasis> be on the
same line as commands in <filename>inputrc</filename>.</para>
<para><screen># Make sure we dont output everything on the 1 line
set horizontal-scroll-mode Off
set meta-flag On # Enables 8 bit input
set input-meta On # Enables 8 bit input
set convert-meta Off # Turns off 8th bit stripping
set output-meta On # Keep the 8th bit for display
set bell-style none # none,visable or audible
# 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
# All of the following map the escape sequence of the
# value contained inside the 1st argument to the
@ -51,8 +61,8 @@ inputrc (i.e. for all users), you will need to add the line
<userinput>export INPUTRC=/etc/inputrc</userinput> to your
.bash_profile, .bashrc or .profile file as appropriate.</para>
<para>If you want to use per-user <userinput>.inputrc</userinput> files.
You can create one and drop it into <filename>/etc/skel</filename> for use
<para>If you want to use per-user <userinput>.inputrc</userinput> files,
you can create one and drop it into <filename>/etc/skel</filename> for use
when creating new users.</para>
</sect1>