Answers:
一种解决方案是使用lynx -dump
,如
lynx -dump file.html
要么
echo "<div>this is a div</div>" | lynx -dump -stdin
使用w3m -dump
,它尊重页面的布局。太棒了。
sudo aptitude install w3m
w3m -dump file.html
echo "<div>x</div>" | w3m -dump -T text/html
您可以设置终端的列数以获得更好的布局,例如,如果您使用的是全窗口终端,则可以尝试使用200:
w3m -dump -cols 200 file.html