change ch7 echo commands to use full path

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@953 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Mark Hymers 2001-08-09 16:43:10 +00:00
parent 1a4422699a
commit b1772b15bf
13 changed files with 14 additions and 14 deletions

View File

@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/checkfs</filename> script by running <para>Create the <filename>/etc/init.d/checkfs</filename> script by running
the following command:</para> the following command:</para>
<para><screen><userinput>cat &gt; checkfs &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/checkfs &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/checkfs # Begin /etc/init.d/checkfs

View File

@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/functions</filename> script by running <para>Create the <filename>/etc/init.d/functions</filename> script by running
the following command:</para> the following command:</para>
<para><screen><userinput>cat &gt; functions &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/functions &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/functions # Begin /etc/init.d/functions

View File

@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/halt</filename> script by running the <para>Create the <filename>/etc/init.d/halt</filename> script by running the
following command:</para> following command:</para>
<para><screen><userinput>cat &gt; halt &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/halt &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/halt # Begin /etc/init.d/halt

View File

@ -12,7 +12,7 @@ that everyone will need this script?
<para>Create the <filename>/etc/init.d/loadkeys</filename> script by <para>Create the <filename>/etc/init.d/loadkeys</filename> script by
running the following command:</para> running the following command:</para>
<para><screen><userinput>cat &gt; loadkeys &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/loadkeys &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/loadkeys # Begin /etc/init.d/loadkeys

View File

@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/mountfs</filename> script by running <para>Create the <filename>/etc/init.d/mountfs</filename> script by running
the following command:</para> the following command:</para>
<para><screen><userinput>cat &gt; mountfs &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/mountfs &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/mountfs # Begin /etc/init.d/mountfs

View File

@ -5,7 +5,7 @@
script. Create the <filename>/etc/init.d/rc</filename> script by running the script. Create the <filename>/etc/init.d/rc</filename> script by running the
following command:</para> following command:</para>
<para><screen><userinput>cat &gt; rc &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/rc &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/rc # Begin /etc/init.d/rc
# #

View File

@ -5,7 +5,7 @@
Create the <filename>/etc/init.d/rcS</filename> script by running the following Create the <filename>/etc/init.d/rcS</filename> script by running the following
command:</para> command:</para>
<para><screen><userinput>cat &gt; rcS &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/rcS &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/rcS # Begin /etc/init.d/rcS

View File

@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/reboot</filename> script by running the <para>Create the <filename>/etc/init.d/reboot</filename> script by running the
following command:</para> following command:</para>
<para><screen><userinput>cat &gt; reboot &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/reboot &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/reboot # Begin /etc/init.d/reboot

View File

@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/sendsignals</filename> script by running <para>Create the <filename>/etc/init.d/sendsignals</filename> script by running
the following command:</para> the following command:</para>
<para><screen><userinput>cat &gt; sendsignals &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/sendsignals &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/sendsignals # Begin /etc/init.d/sendsignals

View File

@ -18,7 +18,7 @@ changed to the value of <emphasis>1</emphasis>.</para>
<para>Create the <filename>/etc/init.d/setclock</filename> script by running <para>Create the <filename>/etc/init.d/setclock</filename> script by running
the following command:</para> the following command:</para>
<para><screen><userinput>cat &gt; setclock &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/setclock &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/setclock # Begin /etc/init.d/setclock

View File

@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/sysklogd</filename> script by running <para>Create the <filename>/etc/init.d/sysklogd</filename> script by running
the following command:</para> the following command:</para>
<para><screen><userinput>cat &gt; sysklogd &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/sysklogd &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/sysklogd # Begin /etc/init.d/sysklogd

View File

@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/template</filename> script by running <para>Create the <filename>/etc/init.d/template</filename> script by running
the following command:</para> the following command:</para>
<para><screen><userinput>cat &gt; template &lt;&lt; "EOF"</userinput> <para><screen><userinput>cat &gt; /etc/init.d/template &lt;&lt; "EOF"</userinput>
#!/bin/sh #!/bin/sh
# Begin /etc/init.d/ # Begin /etc/init.d/

View File

@ -4,8 +4,8 @@
<!ENTITY book SYSTEM "book/book.xml"> <!ENTITY book SYSTEM "book/book.xml">
<!ENTITY version "20010808"> <!ENTITY version "20010809">
<!ENTITY releasedate "August 8th, 2001"> <!ENTITY releasedate "August 9th, 2001">
<!ENTITY ftp-root "ftp://ftp.linuxfromscratch.org"> <!ENTITY ftp-root "ftp://ftp.linuxfromscratch.org">
<!ENTITY http-root "http://ftp.linuxfromscratch.org"> <!ENTITY http-root "http://ftp.linuxfromscratch.org">