I have two files:
File1:
not_keyword: 'something'
keyword: 'condition'
another_not_keyword: 'something'
File2:
condition 1 condition 2 condition 3
I would like to find all occurrences of keyword in File1 and replace its content (condition) with the content of File2.
Desired output in this case:
not_keyword: 'something'
keyword: 'condition 1 condition 2 condition 3'
another_not_keyword: 'something"
keywordin File1 be kept or should they be removed?