mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-30 22:57:59 +00:00
8d88983e21
Not all changes are here though.
548 B
548 B
GNU sed
Stands for stream editor, it is a language for interfacing with text streams.
Quick pointers
- the tool will interact with the stream per line
;
to denote end of expression-E, --regexp-extended
to use PCREs
is one of the most common and extensive commands for it
printf "Hello\nThere" | sed -E -e 's/[aeiou]//g; s/[l]//g'
H Thr