私は不要な迷惑テキストがたくさんある大きなxhtmlファイルを持っています。私はそのファイル内で何度も出現する2つの特定の文字列の間にあるテキストを必要とします。bashの複数の特定の文字列の間でテキストを抽出する
<html>
<xyz> unneeded text </xyz>
<mytag> important text1 </mytag>
<xyz> unneeded text </xyz>
<xyz> unneeded text </xyz>
<mytag> important text2 </mytag>
<mytag> important text3 </mytag>
<xyz> unneeded text </xyz>
</html>
私の出力は次のようになります。
important text1
important text2
important text3
私はbashスクリプトを使用していることを行う必要があります。
ご協力ありがとうございます