NameDateSize

..Today40

buf.cH A D22-Mar-20147 KiB

cbc.cH A D01-Aug-202312.5 KiB

ed.1H A D30-Apr-201924 KiB

ed.hH A D05-Jan-20197.6 KiB

glbl.cH A D12-Apr-20245.8 KiB

io.cH A D22-Mar-20148.6 KiB

main.cH A D30-Apr-201931.7 KiB

MakefileH A D22-May-2017308

POSIXH A D20-May-20224.3 KiB

re.cH A D22-Mar-20143.9 KiB

READMEH A D05-Jan-2019917

sub.cH A D22-Mar-20146.8 KiB

test/H12-Oct-2015167

undo.cH A D02-Nov-20214.1 KiB

README

1$NetBSD: README,v 1.10 2019/01/04 19:13:58 maya Exp $
2
3ed is an 8-bit-clean, POSIX-compliant line editor.  It should work with
4any regular expression package that conforms to the POSIX interface
5standard, such as GNU regex(3).
6
7If reliable signals are supported (e.g., POSIX sigaction(2)), it should
8compile with little trouble.  Otherwise, the macros SPL1() and SPL0()
9should be redefined to disable interrupts.
10
11The following compiler directives are recognized:
12DES		- to add encryption support (requires crypt(3))
13BACKWARDS	- for backwards compatibility
14NEED_INSQUE	- if insque(3) is missing
15
16The file `POSIX' describes extensions to and deviations from the POSIX
17standard.
18
19The ./test directory contains regression tests for ed. The README
20file in that directory explains how to run these.
21
22For a description of the ed algorithm, see Kernighan and Plauger's book
23"Software Tools in Pascal," Addison-Wesley, 1981.
24