任何人都可以請求幫助編寫shell腳本以滿足以下要求。Shell腳本到新文件引用其他文件
我有一個CSV文件作爲逗號分隔的格式如下所示
A,B,C
D,E,F
存在其中值被寫入如下所述另一個文件: -
Ramesh
Suresh
隨着上述的幫助我需要構建新文件的兩個文件。
<root>
<env name="A" domain="B">
<component name="Ramesh">
<machine name="C">Ramesh</machine>
</component>
<component name="Suresh">
<machine name="C">Suresh</machine>
</component>
</env>
<env name="D" domain="E">
<component name="Ramesh">
<machine name="F">Ramesh</machine>
</component>
<component name="Suresh">
<machine name="F">Suresh</machine>
</component>
</env>
</root>
包括你試過的東西。 – Fazlin