I have long sed substitution expressions in a bash script.
I don't particularly like having such long lines, is it possible to have them split on several lines, i.e.
sed -r -e 's/
match/
replacement/
options'
This would avoid ending up with lines that have 100+ characters, but i've never seen this before using sed.