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