source: chapter06/sed.xml@ 0c81bec

Last change on this file since 0c81bec was 29723b9, checked in by Matthew Burgess <matthew@…>, 20 years ago

Correct some invalid XML spotted by jing

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/LFS-RNG/BOOK@4388 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 1.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE section [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<section xmlns="http://docbook.org/docbook-ng"
7 xml:id="ch-system-sed" xreflabel="Sed" role="wrap">
8<title>Sed-&sed-version;</title>
9<?dbhtml filename="sed.html"?>
10
11<indexterm zone="ch-system-sed"><primary sortas="a-Sed">Sed</primary></indexterm>
12
13<section role="package"><title/>
14<para>The Sed package contains a stream editor.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.2 SBU</seg><seg>5.2 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>Sed installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils,
25Diffutils, GCC, Gettext, Glibc, Grep, Make, Texinfo</seg></seglistitem>
26</segmentedlist>
27</section>
28
29<section role="installation">
30<title>Installation of Sed</title>
31
32<para>Prepare Sed for compilation:</para>
33
34<screen><userinput>./configure --prefix=/usr --bindir=/bin</userinput></screen>
35
36<para>Compile the package:</para>
37
38<screen><userinput>make</userinput></screen>
39
40<para>To test the results, issue:
41<userinput>make check</userinput>.</para>
42
43<para>Now install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47</section>
48
49
50<section xml:id="contents-sed" role="content"><title>Contents of Sed</title>
51
52<segmentedlist>
53<segtitle>Installed program</segtitle>
54<seglistitem><seg>sed</seg></seglistitem>
55</segmentedlist>
56
57<variablelist><title>Short descriptions</title>
58
59<varlistentry xml:id="sed">
60<term><command>sed</command></term>
61<listitem>
62<indexterm zone="ch-system-sed sed"><primary sortas="b-sed">sed</primary></indexterm>
63<para>is used to filter and transform text files in a single pass.</para>
64</listitem>
65</varlistentry>
66</variablelist>
67
68</section>
69
70
71
72</section>
Note: See TracBrowser for help on using the repository browser.