I have two files in Linux, in file a there are variables like these:
${VERSION} ${SOFTWARE_PRODUCER}
And the values of these variables are stored in file b:
VERSION=1.0.1
SOFTWARE_PRODUCER=Luc
Now how can I use command to replace the variables in file a with values in file b? Is something like sed able to do this task?
Thanks.