GNU Sed: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with "{{implementation|Sed}} homepage: [https://www.gnu.org/software/sed/ https://www.gnu.org/software/sed/] sed (stream editor) isn't an interactive text editor. Instead, it is u...")
 
m (wp / non-interactive)
 
Line 1: Line 1:
{{implementation|Sed}}
{{implementation|Sed}}


homepage: [https://www.gnu.org/software/sed/ https://www.gnu.org/software/sed/]
Homepage: [https://www.gnu.org/software/sed/ https://www.gnu.org/software/sed/]


[[wp:sed]] (stream editor) is a non-interactive text editor.
sed (stream editor) isn't an interactive text editor. Instead, it is used to filter text, i.e., it takes text input, performs some operation (or set of operations) on it, and outputs the modified text. sed is typically used for extracting part of a file using pattern matching or substituting multiple occurrences of a string within a file.
It is used to filter text, i.e., it takes text input,
performs some operation (or set of operations) on it,
and outputs the modified text.

sed is typically used for extracting part of a file using pattern matching
or substituting multiple occurrences of a string within a file.

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

Latest revision as of 10:59, 21 November 2014

GNU Sed is an implementation of Sed. Other implementations of Sed.

Homepage: https://www.gnu.org/software/sed/

wp:sed (stream editor) is a non-interactive text editor. It is used to filter text, i.e., it takes text input, performs some operation (or set of operations) on it, and outputs the modified text.

sed is typically used for extracting part of a file using pattern matching or substituting multiple occurrences of a string within a file.