From 2ec4b60f359413c6f0163b9e72108c24460573e7 Mon Sep 17 00:00:00 2001 From: Zack Winkles Date: Mon, 7 Jun 2004 19:16:21 +0000 Subject: Normalized usage of sed throughout the book git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3762 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/man.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chapter06/man.xml') diff --git a/chapter06/man.xml b/chapter06/man.xml index 552d07d21..54f7174a6 100644 --- a/chapter06/man.xml +++ b/chapter06/man.xml @@ -40,13 +40,13 @@ width instead of being limited to 80 characters: switch to the PAGER variable so that escape sequences are properly handled by Less: -sed -i 's/-is/&R/' configure +sed -i 's@-is@&R@g' configure The third is also a sed substitution to comment out the MANPATH /usr/man line in the man.conf file to prevent redundant results when using programs such as whatis: -sed -i 's%MANPATH./usr/man%#&%' src/man.conf.in +sed -i 's@MANPATH./usr/man@#&@g' src/man.conf.in Now prepare Man for compilation: -- cgit v1.2.3-54-g00ecf