これは、Web サイトの標準 Web ページで使用しているコマンドですwget。
tr '<' '\n<' < index.html
ただし、改行が表示されますが、左のブレークインは追加されません。例えば
echo "<hello><world>" | tr '<' '\n<'
戻り値
(blank line which is fine)
hello>
world>
それ以外の
(blank line or not)
<hello>
<world>
どうしたの?