source: chapter06/grep.xml@ fae9234

Last change on this file since fae9234 was 83865af, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Merged stuff from RAQ2 in chapter06 - first round.

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

  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[752f4e5]6<sect1 id="ch-system-grep" role="wrap">
[673b0d8]7<title>Grep-&grep-version;</title>
8<?dbhtml filename="grep.html"?>
9
10<indexterm zone="ch-system-grep"><primary sortas="a-Grep">Grep</primary></indexterm>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[5888299]13<para>The Grep package contains programs for searching through files.</para>
14
[a001133]15<segmentedlist>
16<segtitle>&buildtime;</segtitle>
17<segtitle>&diskspace;</segtitle>
18<seglistitem><seg>0.1 SBU</seg><seg>5.8 MB</seg></seglistitem>
19</segmentedlist>
[673b0d8]20
[a001133]21<segmentedlist>
22<segtitle>Grep installation depends on</segtitle>
23<seglistitem><seg>Bash, Binutils, Coreutils,
[69993f4]24Diffutils, GCC, Gettext, Glibc, Make, Sed, and Texinfo</seg></seglistitem>
[a001133]25</segmentedlist>
26</sect2>
[3554fa3a]27
[a001133]28<sect2 role="installation">
[73aedd1d]29<title>Installation of Grep</title>
30
[83865af]31<para arch="raq2">This patch updates config.guess and config.sub for RaQ2 server.</para>
32
33<screen arch="raq2"><userinput>patch -Np1 -i ../grep-&grep-version;-raq2_config_update-1.patch</userinput></screen>
34
[73aedd1d]35<para>Prepare Grep for compilation:</para>
36
[c288d97]37<screen><userinput>./configure --prefix=/usr --bindir=/bin --with-included-regex</userinput></screen>
[73aedd1d]38
39<para>Compile the package:</para>
40
41<screen><userinput>make</userinput></screen>
42
[673b0d8]43<para>To test the results, issue:
[8a5f906]44<userinput>make check</userinput>.</para>
[73aedd1d]45
[69993f4]46<para>Install the package:</para>
[73aedd1d]47
48<screen><userinput>make install</userinput></screen>
49
50</sect2>
[6370fa6]51
[5888299]52
[c6cb3aa]53<sect2 id="contents-grep" role="content"><title>Contents of Grep</title>
[673b0d8]54
[c6cb3aa]55<segmentedlist>
56<segtitle>Installed programs</segtitle>
[69993f4]57<seglistitem><seg>egrep (link to grep), fgrep (link to grep), and grep</seg></seglistitem>
[c6cb3aa]58</segmentedlist>
[673b0d8]59
[2256873]60<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
[3ed279f]61<?dbfo list-presentation="list"?>
[73aedd1d]62
[b8a819f]63<varlistentry id="egrep">
64<term><command>egrep</command></term>
[c6cb3aa]65<listitem>
[2256873]66<para>Prints lines matching an extended regular expression</para>
[3ed279f]67<indexterm zone="ch-system-grep egrep"><primary sortas="b-egrep">egrep</primary></indexterm>
[c6cb3aa]68</listitem>
69</varlistentry>
[673b0d8]70
[b8a819f]71<varlistentry id="fgrep">
72<term><command>fgrep</command></term>
[c6cb3aa]73<listitem>
[2256873]74<para>Prints lines matching a list of fixed strings</para>
[3ed279f]75<indexterm zone="ch-system-grep fgrep"><primary sortas="b-fgrep">fgrep</primary></indexterm>
[c6cb3aa]76</listitem>
77</varlistentry>
[673b0d8]78
[b8a819f]79<varlistentry id="grep">
80<term><command>grep</command></term>
[c6cb3aa]81<listitem>
[2256873]82<para>Prints lines matching a basic regular expression</para>
[3ed279f]83<indexterm zone="ch-system-grep grep"><primary sortas="b-grep">grep</primary></indexterm>
[c6cb3aa]84</listitem>
85</varlistentry>
86</variablelist>
[673b0d8]87
88</sect2>
89
90</sect1>
[ef13657]91
Note: See TracBrowser for help on using the repository browser.