비슷한 명령줄 웹 브라우저가 있다는 것을 알고 있습니다 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
_________________________________________________
한마디로 제목과 링크입니다
편집하다:의견 감사합니다. 좀 더 조사해 봤습니다.웹 스크래핑그리고 발견이 코드wget
패키지에 포함된 두 앱을 함께 사용하세요 .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
제목과 링크를 검색하는 데 어떤 패턴을 사용해야 할지 모르겠습니다 .