source: chapter06/gawk.xml@ 29723b9

Last change on this file since 29723b9 was 6a0e6f3, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • Remove the spurious <info> tags that I thought were necessary but evidently aren't

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

  • Property mode set to 100644
File size: 3.1 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-gawk" xreflabel="Gawk" role="wrap">
8<title>Gawk-&gawk-version;</title>
9<?dbhtml filename="gawk.html"?>
10
11<indexterm zone="ch-system-gawk"><primary sortas="a-Gawk">Gawk</primary></indexterm>
12
13<section role="package"><title/>
14<para>The Gawk package contains programs for manipulating text files.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.2 SBU</seg><seg>17 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>Gawk installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils,
25Diffutils, GCC, Gettext, Glibc, Grep, Make, Sed</seg></seglistitem>
26</segmentedlist>
27</section>
28
29<section role="installation">
30<title>Installation of Gawk</title>
31
32<para>Prepare Gawk for compilation:</para>
33
34<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/lib</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-gawk" role="content"><title>Contents of Gawk</title>
51
52<segmentedlist>
53<segtitle>Installed programs</segtitle>
54<seglistitem><seg>awk (link to gawk), gawk, gawk-&gawk-version;, grcat, igawk,
55pgawk, pgawk-&gawk-version; and pwcat</seg></seglistitem>
56</segmentedlist>
57
58<variablelist><title>Short descriptions</title>
59
60<varlistentry xml:id="gawk">
61<term><command>gawk</command></term>
62<listitem>
63<indexterm zone="ch-system-gawk gawk"><primary sortas="b-gawk">gawk</primary></indexterm>
64<para>is a program for manipulating text files.
65It is the GNU implementation of <command>awk</command>.</para>
66</listitem>
67</varlistentry>
68
69<varlistentry xml:id="grcat">
70<term><command>grcat</command></term>
71<listitem>
72<indexterm zone="ch-system-gawk grcat"><primary sortas="b-grcat">grcat</primary></indexterm>
73<para>dumps the group database <filename>/etc/group</filename>.</para>
74</listitem>
75</varlistentry>
76
77<varlistentry xml:id="igawk">
78<term><command>igawk</command></term>
79<listitem>
80<indexterm zone="ch-system-gawk igawk"><primary sortas="b-igawk">igawk</primary></indexterm>
81<para>gives <command>gawk</command> the ability to include files.</para>
82</listitem>
83</varlistentry>
84
85<varlistentry xml:id="pgawk">
86<term><command>pgawk</command></term>
87<listitem>
88<indexterm zone="ch-system-gawk pgawk"><primary sortas="b-pgawk">pgawk</primary></indexterm>
89<para>is the profiling version of <command>gawk</command>.</para>
90</listitem>
91</varlistentry>
92
93<varlistentry xml:id="pwcat">
94<term><command>pwcat</command></term>
95<listitem>
96<indexterm zone="ch-system-gawk pwcat"><primary sortas="b-pwcat">pwcat</primary></indexterm>
97<para>dumps the password database <filename>/etc/passwd</filename>.</para>
98</listitem>
99</varlistentry>
100</variablelist>
101
102</section>
103
104</section>
Note: See TracBrowser for help on using the repository browser.