入力ファイルからデータを読み取り、データをxmlの適切なフィールドに入れます。

入力ファイルからデータを読み取り、データをxmlの適切なフィールドに入れます。

入力ファイルとxmlファイルがあります。

入力ファイル -

/user/sht
227_89,45_99
/user/sht1
230_90
/user/sht2
441_50

ファイルにはパスと場所を含む代替行があります。

xmlファイル -

<aaa><command name="move">
<domain>
<path></path>
<positions></positions>
</domain>
<domain>
<path></path>
<positions></positions>
</domain>
<domain>
<path></path>
<positions></positions>
</domain>
</command>
</aaa>

次の必須出​​力xmlを提供するスクリプトを作成したら、次のxmlを入力として使用していくつかのコマンドを実行する必要があります。

<aaa><command name="move">
<domain>
<path>/user/sht</path>
<positions>227_89,45_99</positions>
</domain>
<domain>
<path>/user/sht1</path>
<positions>230_90</positions>
</domain>
<domain>
<path>/user/sht2</path>
<positions>441_50</positions>
</domain>
</command>
</aaa>

入力ファイルから1行ずつ抽出してxmlに入れてみましたが、問題はすべてのエントリが<path>最初の入力行に置き換えられることです。

GNU bashの使用4.1.2。

答え1

GNUsedスクリプトを使用すると、次のことができます。

sed -n '/<aaa>/,/<.aaa>/!{H;d}
G;:a
s_>\(</path>.*\n\)\n\([^\n]*\)_>\2\1_
s_>\(</positions>.*\n\)\n\([^\n]*\)_>\2\1_;
ta;P;s/.*\n\n/\n/;h' input.txt input.xml

最初の行は、保存バッファー内の最初のファイルのすべての行を収集します。

その後、2番目のファイルの各行に保持バッファが追加されますG。その場合は、2 つのコマンドのいずれかをpath使用して、ラベル内の保持バッファの最初のセグメントを移動します。positionss

いずれの場合も、その行は印刷されP()削除され(s/.*\n\n/\n/)、置換リストの残りの部分は次のサイクル(h)のためにストレージバッファに戻されます。

答え2

シェルスクリプトがあなたの要件を満たしています

#!/bin/bash
count=0          ## counting lines
while read var
do
    occurance=$[$count/2+1];                  ## check nth occurance of search path/position from file
if [ $((count%2)) -eq 0 ];                ## If counting even replace path values else replace position values
then
    perl -pe 's{<path>*}{++$n == '$occurance' ? "<path>'$var'" : $&}ge' xml > xml1
else
    perl -pe 's{<positions>*}{++$n == '$occurance' ? "<positions>'$var'" : $&}ge' xml > xml1
fi
yes|cp xml1 xml
    count=$[$count +1]
done <./input
rm xml1 

答え3

次のようにGNU sedおよびXML形式を使用します。

sed -e '
   /<domain>/,/<\/domain>/!b
   /<\(path\|positions\)><\/\1>/!b
   s//<\1>/
   R input_file
' XML_file |
sed -e '
   /<\(path\|positions\)>.*/N
   s//&\n<\/\1>/
   s/\n//g
'

結果

<aaa><command name="move">
<domain>
<path>/user/sht</path>
<positions>227_89,45_99</positions>
</domain>
<domain>
<path>/user/sht1</path>
<positions>230_90</positions>
</domain>
<domain>
<path>/user/sht2</path>
<positions>441_50</positions>
</domain>
</command>
</aaa>

答え4

シェルから:

echo '<aaa><command name="move">'
echo '<domain>'

while true
do read v || break
   echo "<path>$v</path>"
   read v || break
   echo "<positions>$v</positions>"
done < /path/to/YourInputFile

echo '</domain>
</command>
</aaa>'

関連情報