source: postlfs/editors/ed.xml@ b264d67

11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since b264d67 was 18aaa202, checked in by Pierre Labastie <pierre.labastie@…>, 18 months ago

update to ed-1.19

  • Property mode set to 100644
File size: 4.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY ed-download-http "&gnu-http;/ed/ed-&ed-version;.tar.lz">
8 <!ENTITY ed-download-ftp "&gnu-ftp;/ed/ed-&ed-version;.tar.lz">
9 <!ENTITY ed-md5sum "fa861f0c9ebb8c0e1b79fda770a73b1c">
10 <!ENTITY ed-size "65 KB">
11 <!ENTITY ed-buildsize "1.2 MB">
12 <!ENTITY ed-time "less than 0.1 SBU">
13]>
14
15<sect1 id="ed" xreflabel="Ed-&ed-version;">
16 <?dbhtml filename="ed.html"?>
17
18
19 <title>Ed-&ed-version;</title>
20
21 <indexterm zone="ed">
22 <primary sortas="a-Ed">Ed</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Ed</title>
27
28 <para>
29 <application>Ed</application> is a line-oriented text editor. It
30 is used to create, display, modify and otherwise manipulate text files,
31 both interactively and via shell scripts. Ed isn't something which many
32 people use. It's described here because it can be used by the patch
33 program if you encounter an ed-based patch file. This happens rarely
34 because diff-based patches are preferred these days.
35 </para>
36
37 &lfs112_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&ed-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&ed-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &ed-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &ed-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &ed-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &ed-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">Ed Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required to uncompress the tarball</bridgehead>
76 <para role="required">
77 <xref linkend="libarchive"/> (for bsdtar)
78 </para>
79
80 <para condition="html" role="usernotes">User Notes:
81 <ulink url="&blfs-wiki;/ed"/></para>
82
83 </sect2>
84
85 <sect2 role="installation">
86 <title>Installation of Ed</title>
87
88 <para>
89 Install <application>Ed</application> by running the following
90 commands:
91 </para>
92
93<screen><userinput>./configure --prefix=/usr &amp;&amp;
94make</userinput></screen>
95
96 <para>
97 To test the results, issue: <command>make check</command>.
98 </para>
99
100 <para>
101 Now, as the <systemitem class="username">root</systemitem> user:
102 </para>
103
104<screen role="root"><userinput>make install</userinput></screen>
105
106 </sect2>
107
108 <sect2 role="content">
109 <title>Contents</title>
110
111 <segmentedlist>
112 <segtitle>Installed Programs</segtitle>
113 <segtitle>Installed Libraries</segtitle>
114 <segtitle>Installed Directories</segtitle>
115
116 <seglistitem>
117 <seg>ed and red</seg>
118 <seg>None</seg>
119 <seg>None</seg>
120 </seglistitem>
121 </segmentedlist>
122
123 <variablelist>
124 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
125 <?dbfo list-presentation="list"?>
126 <?dbhtml list-presentation="table"?>
127
128 <varlistentry id="ed-prog">
129 <term><command>ed</command></term>
130 <listitem>
131 <para>
132 is a line-oriented text editor
133 </para>
134 <indexterm zone="ed ed-prog">
135 <primary sortas="b-ed">ed</primary>
136 </indexterm>
137 </listitem>
138 </varlistentry>
139
140 <varlistentry id="red">
141 <term><command>red</command></term>
142 <listitem>
143 <para>
144 is a restricted <command>ed</command>&mdash;it can only edit
145 files in the current directory and cannot execute shell commands
146 </para>
147 <indexterm zone="ed red">
148 <primary sortas="b-red">red</primary>
149 </indexterm>
150 </listitem>
151 </varlistentry>
152
153 </variablelist>
154
155 </sect2>
156
157</sect1>
Note: See TracBrowser for help on using the repository browser.