Category:Ed: Difference between revisions

From Rosetta Code
Content added Content deleted
(Add category page for ed)
 
(Mention the conventional way to run Ed script.)
Line 7: Line 7:
Ed is also a precursor to a whole family of other text editors and command languages.
Ed is also a precursor to a whole family of other text editors and command languages.
Including [[Sed]], ex, vi, vim, sam, and others.
Including [[Sed]], ex, vi, vim, sam, and others.

Ed scripts are usually ran as
<syntaxhighlight lang="bash">
cat script.ed | ed -Es file.input > file.output
</syntaxhighlight>


[[Category:Editor]]
[[Category:Editor]]

Revision as of 15:42, 18 June 2024

This page is a stub. It needs more information! You can help Rosetta Code by filling it in!
Language
Ed
This programming language may be used to instruct a computer to perform a task.
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using Ed.

This is the command language used by wp:ed_(software), the line oriented text editor.

Implementations are GNU Ed, Plan 9 Ed, BSD ed, and original UNIX ed. Ed is also a precursor to a whole family of other text editors and command languages. Including Sed, ex, vi, vim, sam, and others.

Ed scripts are usually ran as

cat script.ed | ed -Es file.input > file.output