I want to add multiple lines after matching a pattern. So from
Pattern:
bla
to
Pattern:
line1-from-file1
line2-from-file1
bla
I ran something like this sed '/Pattern/r file1' file2
but it gave:
Pattern:
line1-from-file1
line2-from-file1
bla