GNU Sed

From Rosetta Code
Revision as of 00:58, 14 September 2014 by rosettacode>Glennj (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
GNU Sed is an implementation of Sed. Other implementations of Sed.

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

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.