GNU sed

Stands for stream editor, it is a language for interfacing with text streams.

Quick pointers

printf "Hello\nThere" | sed -E -e 's/[aeiou]//g; s/[l]//g'
H
Thr