Frage
Welches Tool (vorzugsweise für Linux) kann den Inhalt eines HTML-Elements anhand seines CSS-Pfads auswählen?
Beispiel
Betrachten Sie beispielsweise das folgende HTML-Dokument:
<html>
<body>
<div class="header">
<h1>Header</h1>
</div>
<div class="content">
<table>
<tbody>
<tr><td class="data">Tabular Content 1</td></tr>
<tr><td class="data">Tabular Content 2</td></tr>
</tbody>
</table>
</div>
<div class="footer">
<p>Footer</p>
</div>
</body>
</html>
Welches Befehlszeilenprogramm (z. B. eine Art "cssgrep") kann Werte mit einem CSS-Selektor extrahieren? Das ist:
cssgrep page.html "body > div.content > table > tbody > tr > td.data"
Das Programm würde Folgendes in die Standardausgabe schreiben:
Tabular Content 1
Tabular Content 2
ähnliche Links
- https://getfirebug.com/wiki/index.php/Command_Line_API#.24.24.28selector.29
- /programming/7334942/is-there-something-like-a-css-selector-or-xpath-grep
- https://github.com/keeganstreet/element-finder
- http://www.w3.org/Tools/HTML-XML-utils/
Vielen Dank!
brew install html-xml-utils
.