同様のコマンドラインWebブラウザがあることを知っていますw3m
lynx
。しかし、私はクエリを印刷するためのより簡単なツールを探しています。似ていますcurl
が、よりきれいな形式です。
私が走っているようにhttps://www.youtube.com/results?search_query=linux
私は次のようなものを得るでしょう:
Top 3 Best Desktop Linux Distros | 2019 Edition
https://www.youtube.com/watch?v=vZ7nI2im4Yg
_________________________________________________
The Next Ubuntu? - Clear Linux First Impressions
https://www.youtube.com/watch?v=UuCxCLFDfwM
_________________________________________________
The Next Ubuntu? - Clear Linux First Impressions
https://www.youtube.com/watch?v=FUGd99GRAfo
_________________________________________________
一言で言うとタイトルとリンクです
編集する:コメントありがとうございます。もう少し調べてみました。Webスクレイピングそして発見このコードwget
パッケージに含まれている2つのアプリを一緒に使用してください。html-xml-utils
lynx
link="https://www.youtube.com/results?search_query=linux"
wget "$link" -O- |
hxnormalize -x |
hxselect -i "div." | #in this line I'm missing the proper pattern
lynx -stdin -dump
youtube.com 検索で表示されたタイトルを確認すると、次のような結果が得られます。
<div id="title-wrapper" class="style-scope ytd-video-renderer">
<h3 class="title-and-badge style-scope ytd-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-video-renderer" disable-upgrade="" hidden="">
<dom-repeat id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer" style="display: none;"><template></template></dom-repeat>
</ytd-badge-supported-renderer>
<a id="video-title" class="yt-simple-endpoint style-scope ytd-video-renderer" title="What is Linux?" href="/watch?v=zA3vmx0GaO8" aria-l$
What is Linux?
</a>
</h3>
<div id="menu" class="style-scope ytd-video-renderer"></div>
</div>
hxselect
タイトルとリンクを検索するためにどのパターンを使用するべきかわかりません。