Say I have two files: - data.txt - report.txt
The report contains a text with some "placeholders", example:
HPLC results for sample: <insert-sample-id-here>, elements analyzed: <insert-element-name>
The data file contains a series of "key/value" lines:
sampleID: 123456abc
elementName: genericThickeningAgent
Not a computer whiz here, but I know the task of "find and replace" can be automated by the computer; What sort of command should be used to "rewrite report.txt after replacing the placeholders with the value of the matching pairs from my data file"?