aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/ed-inst.xml
diff options
context:
space:
mode:
authorMark Hymers <markh@linuxfromscratch.org>2001-08-24 20:45:42 +0000
committerMark Hymers <markh@linuxfromscratch.org>2001-08-24 20:45:42 +0000
commitbccc28841facca8ece8b0ecac5b5f04cd6c545e0 (patch)
tree9eec18edb5174f825fe116b91e7eb3fcae113193 /chapter06/ed-inst.xml
parent0a68a6c5e7135beb133bd8d2ee4a59d927bd588a (diff)
[Bug 140] Sed consistencies
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1020 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/ed-inst.xml')
-rw-r--r--chapter06/ed-inst.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter06/ed-inst.xml b/chapter06/ed-inst.xml
index 698f0d299..052d8ab0f 100644
--- a/chapter06/ed-inst.xml
+++ b/chapter06/ed-inst.xml
@@ -3,8 +3,8 @@
<para>Install Ed by running the following commands:</para>
-<para><screen><userinput>cp buf.c buf.c-temp &amp;&amp;</userinput>
-<userinput>sed 's/int u/int u, sfd/' buf.c-temp | \</userinput>
+<para><screen><userinput>cp buf.c buf.c.backup &amp;&amp;</userinput>
+<userinput>sed 's/int u/int u, sfd/' buf.c.backup | \</userinput>
<userinput>&nbsp;&nbsp;&nbsp;sed '/.*\*mktemp.*/d' | \</userinput>
<userinput>&nbsp;&nbsp;&nbsp;sed 's/.*if (mktemp.*/ sfd = mkstemp(sfn);\</userinput>
<userinput>&nbsp;&nbsp;&nbsp;if ((sfd == -1) || (sfp = fopen (sfn, "w+")) == NULL)/' &gt; buf.c</userinput>