diff options
author | Mark Hymers <markh@linuxfromscratch.org> | 2001-08-24 20:45:42 +0000 |
---|---|---|
committer | Mark Hymers <markh@linuxfromscratch.org> | 2001-08-24 20:45:42 +0000 |
commit | bccc28841facca8ece8b0ecac5b5f04cd6c545e0 (patch) | |
tree | 9eec18edb5174f825fe116b91e7eb3fcae113193 /chapter06/man-inst.xml | |
parent | 0a68a6c5e7135beb133bd8d2ee4a59d927bd588a (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/man-inst.xml')
-rw-r--r-- | chapter06/man-inst.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chapter06/man-inst.xml b/chapter06/man-inst.xml index 1c457fc90..3b624f92f 100644 --- a/chapter06/man-inst.xml +++ b/chapter06/man-inst.xml @@ -4,8 +4,10 @@ <para>Run the following commands to install man:</para> <para><screen><userinput>for i in configure src/Makefile.in src/makewhatis.sh</userinput> -<userinput>do sed s/gawk/awk/g $i > $i.fixed</userinput> -<userinput>mv -f $i.fixed $i</userinput> +<userinput>do</userinput> +<userinput> cp $i $i.backup &&</userinput> +<userinput> sed 's/gawk/awk/g' $i > tmp~ &&</userinput> +<userinput> mv -f tmp~ $i</userinput> <userinput>done</userinput> <userinput>chmod 700 configure &&</userinput> <userinput>./configure -default &&</userinput> |