Преглед изворни кода

changed > to &gt and < to &lt;

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2778 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Gerard Beekmans пре 22 година
родитељ
комит
15b436fdab
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      chapter08/grub.xml

+ 3 - 3
chapter08/grub.xml

@@ -28,7 +28,7 @@ into the MBR (Master Boot Record) of hda.</para>
 <para>Also, we need to create the <filename>menu.lst</filename> file, which
 Grub uses to designate it's boot menu:</para>
 
-<para><screen><userinput>cat > /boot/grub/menu.lst << "EOF"
+<para><screen><userinput>cat &gt; /boot/grub/menu.lst &lt;&lt; "EOF"
 # Begin /boot/grub/menu.lst
 
 # Default to first menu entry
@@ -48,7 +48,7 @@ EOF</userinput></screen></para>
 <para>You might also want to add in an entry for your host distribution.  It
 might look similar to this:</para>
 
-<para><screen><userinput>cat >> /boot/grub/menu.lst << "EOF"
+<para><screen><userinput>cat &gt;&gt; /boot/grub/menu.lst &lt;&lt; "EOF"
 # Redhat Linux
 title Redhat
 kernel (hd0,2)/boot/kernel-2.4.20 root=/dev/hda3 ro
@@ -58,7 +58,7 @@ EOF</userinput></screen></para>
 <para>Also, if you happen to dual-boot Windows, the following entry should
 allow booting it:</para>
 
-<para><screen><userinput>cat >> /boot/grub/menu.lst << "EOF"
+<para><screen><userinput>cat &gt;&gt; /boot/grub/menu.lst &lt;&lt; "EOF"
 # Windows
 chainloader (hd0,0)+1
 EOF</userinput></screen></para>