Jump to content

Sed: Difference between revisions

From EDM2
Ak120 (talk | contribs)
Ak120 (talk | contribs)
mNo edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
The Stream editor (sed) reads text files, makes editing changes by a command script, and writes the results to standard output.
The Stream editor (sed) reads text files, makes editing changes by a command script, and writes the results to standard output.
==History==
SED was originally developed in the 1970ies as a non-interactive text editor by Lee E. McMahon (AT&T Bell Laboratories in Murray Hill, New Jersey).


==Features==
==Features==
Line 6: Line 9:
==Implementations==
==Implementations==
*[[GNU sed]]
*[[GNU sed]]
*[[Hamilton C Shell]] 1.05
*minised
*minised
*super sed - enhanced version


==Links==
==Links==
* [http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html sed] (The Open Group Base Specifications)
* [http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html sed] (The Open Group Base Specifications)
* [http://www.grymoire.com/Unix/Sed.html Sed - An Introduction and Tutorial] by Bruce Barnett
* [http://www.grymoire.com/Unix/Sed.html Sed - An Introduction and Tutorial] by Bruce Barnett
* [https://sed.sourceforge.io/grabbag/tutorials/ Sed Tutorials]


[[Category:Text editors]]
[[Category:Text editors]]

Latest revision as of 19:06, 10 October 2023

The Stream editor (sed) reads text files, makes editing changes by a command script, and writes the results to standard output.

History

SED was originally developed in the 1970ies as a non-interactive text editor by Lee E. McMahon (AT&T Bell Laboratories in Murray Hill, New Jersey).

Features

Implementations

Links