linux shell regex: sed (sometimes `sed -E`)
The way `sed` works, is that it operates per line.
syntax: `sed 's/REGEX/SUBSTITUTION/'`
The s command is written on the form: s/REGEX/SUBSTITUTION/, where REGEX is the regular expression you want to search for, and SUBSTITUTION is the text you want to substitute matching text with.