I know the sed syntax to add a line after another line in a file, which is
sed -i '/LINE1/a LINE2' FILE
This adds LINE2 after LINE1 in FILE correct? How do I add a line with a backslash at the end? For example, from
This is a a line \
Indented line1 \
Indented line2 \
Line3
To
This is a a line \
Indented line1 \
Indented line2 \
Added line \
Line3