2003-06-14 01:54:01 +02:00
|
|
|
GNU implementation of the POSIX stream editor `sed'.
|
|
|
|
|
|
|
|
Sed (streams editor) isn't really a true text editor or text
|
|
|
|
processor. Instead, it is used to filter text, i.e., it takes text
|
|
|
|
input and performs some operation (or set of operations) on it and
|
|
|
|
outputs the modified text. Sed is typically used for extracting part
|
2004-04-25 07:01:46 +02:00
|
|
|
of a file using pattern matching or substituting multiple occurrences
|
2003-06-14 01:54:01 +02:00
|
|
|
of a string within a file.
|