Community controlled languages - Perl - PHP - Python
The man page:
A stream editor is used to perform text transformations
on an input stream...
The reality:
sed is much, much more powerful utility than you've been lead
to believe.
If your typical conception of sed is:
sed 's/this/that/' some_file
then you may be interested to see what this arcane tool can really
get up to. For instance:
sed ':a;s/\B[0-9]\{3\}\>/,&/;ta'
sed '/./{H;$!d;};x;/regex/!d'
We'll also look at: