I have conf file like conf.txt with the next value
var=somevalue1
var1=somevalue2
var2=somevalue3
var3=http://somevalue1
The idea is to prepare this into HTML page with table like
<tr>
<td>var</td>
<td>somevalue1</td>
</tr>
<tr>
<td>var3</td>
<td><a href="http://somevalue1">http://somevalue1</a></td>
</tr>
The question is - what does best way to use to prepare it?
So I can read from a file with readarray And then use something like awk to split it. Unfortunately, I am good in powershell, but really bad with bash.
Could you please give some advice or example?
I am planning to put this into var and then put this var to EOF to create a page