freebsd-src/bin/ed
Wilbert Allen Koeswoyo Suwito 84886bf93a
ed(1): Grammar fixes
- Adding a missing verb "is" on line 723
- Changing is to are on line 835

Event:		Advanced UNIX Programming Course (Fall’23) at NTHU.
Pull Request:	https://github.com/freebsd/freebsd-src/pull/986
2024-02-13 12:42:54 +08:00
..
test Remove $FreeBSD$: one-line sh pattern 2023-08-16 11:55:03 -06:00
buf.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00
ed.1 ed(1): Grammar fixes 2024-02-13 12:42:54 +08:00
ed.h bin: Remove ancient SCCS tags. 2023-11-26 22:23:28 -07:00
glbl.c bin: Automated cleanup of cdefs and other formatting 2023-11-26 22:23:59 -07:00
io.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00
main.c Remove copyright strings ifdef'd out 2023-11-26 22:23:58 -07:00
Makefile Remove $FreeBSD$: one-line sh pattern 2023-08-16 11:55:03 -06:00
Makefile.depend Remove $FreeBSD$: one-line sh pattern 2023-08-16 11:55:03 -06:00
POSIX Remove $FreeBSD$: one-line bare tag 2023-08-16 11:55:20 -06:00
re.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00
README Remove $FreeBSD$: one-line bare tag 2023-08-16 11:55:20 -06:00
sub.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00
undo.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00

ed is an 8-bit-clean, POSIX-compliant line editor.  It should work with
any regular expression package that conforms to the POSIX interface
standard, such as GNU regex(3).

If reliable signals are supported (e.g., POSIX sigaction(2)), it should
compile with little trouble.  Otherwise, the macros SPL1() and SPL0()
should be redefined to disable interrupts.

The following compiler directives are recognized:
NO_REALLOC_NULL	- if realloc(3) does not accept a NULL pointer
BACKWARDS	- for backwards compatibility
NEED_INSQUE	- if insque(3) is missing

The file `POSIX' describes extensions to and deviations from the POSIX
standard.

The ./test directory contains regression tests for ed. The README
file in that directory explains how to run these.

For a description of the ed algorithm, see Kernighan and Plauger's book
"Software Tools in Pascal," Addison-Wesley, 1981.