diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2006-09-21 23:04:36 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2006-09-21 23:04:36 +0000 |
commit | 1f3f918e633fdb593f15782c986d408562a5f7b7 (patch) | |
tree | c259abe6dcf3afa85f0c61fa19d1264a475f0b46 /chapter07 | |
parent | fc8f960e270ddbeb7245c79923746586f10e531a (diff) |
Make the spacing consistent for redirecting to a here-document. Thanks to Peter Ennis for the report.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7797 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07')
-rw-r--r-- | chapter07/symlinks.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter07/symlinks.xml b/chapter07/symlinks.xml index 4775403ae..d19ce4155 100644 --- a/chapter07/symlinks.xml +++ b/chapter07/symlinks.xml @@ -32,7 +32,7 @@ location of the device on the bus. If you are going to use the first approach, create a file similar to the following:</para> -<screen role="nodump"><userinput>cat >/etc/udev/rules.d/82-cdrom.rules << EOF +<screen role="nodump"><userinput>cat > /etc/udev/rules.d/82-cdrom.rules << EOF <literal> # Custom CD-ROM symlinks SUBSYSTEM=="block", ENV{ID_MODEL}=="SAMSUNG_CD-ROM_SC-148F", \ @@ -64,7 +64,7 @@ EOF</userinput></screen> <para>The second approach yields:</para> -<screen role="nodump"><userinput>cat >/etc/udev/rules.d/82-cdrom.rules << EOF +<screen role="nodump"><userinput>cat > /etc/udev/rules.d/82-cdrom.rules << EOF <literal> # Custom CD-ROM symlinks SUBSYSTEM=="block", ENV{ID_TYPE}=="cd", \ @@ -116,7 +116,7 @@ EOF</userinput></screen> <para>Then write rules that create the symlinks, e.g.:</para> -<screen role="nodump"><userinput>cat >/etc/udev/rules.d/83-duplicate_devs.rules << EOF +<screen role="nodump"><userinput>cat > /etc/udev/rules.d/83-duplicate_devs.rules << EOF <literal> # Persistent symlinks for webcam and tuner KERNEL=="video*", SYSFS{idProduct}=="1910", SYSFS{idVendor}=="0d81", \ |