Search/replace groups using sed
This is the most common way of my sed usage:
echo Good morning | sed 's/\(.*\s\+\).*/\1evening/g'
Here are brief notes on that ..
This is the most common way of my sed usage:
echo Good morning | sed 's/\(.*\s\+\).*/\1evening/g'
Here are brief notes on that ..
This posts explain how the emacs in-built query-replace-regexp
command can be used to convert upper-cased strings to lower case.