4 回答
TA贡献1735条经验 获得超5个赞
假设你有机会获得curl
和grep
后来干脆:
bash$ curl http://some-website.com | grep -F some-string
TA贡献1829条经验 获得超7个赞
一旦我遇到了从 nagios 网络仪表板解析一些值的情况,
用过的
wget
将内容保存在文件中( -O 文件名)
用于
grep
从文件中获取所需的值wget --user='username' --password='password' https://nagios/dashboard -O filename
TA贡献1906条经验 获得超3个赞
您可以使用 curl 或 wget CLI 工具来获取页面,然后只需 grep 结果(或管道到 grep)。
$ curl https://stackoverflow.com/questions/54698492/grep-string-in-the-source-code-of-a-given-http-link | grep "string in the source code"
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 <title>python - Grep string in the source code of a given http link - Stack Overflow</title>
<meta name="twitter:title" property="og:title" itemprop="name" content="Grep string in the source code of a given http link" />
<meta name="twitter:description" property="og:description" itemprop="description" content="I want to use bash commands line to find a string in the source code of a given web page. Manually I would do it like in those steps:
<link rel="alternate" type="application/atom+xml" title="Feed for question 'Grep string in the source code of a given http link'" href="/feeds/question/54698492">
<h1 itemprop="name" class="grid--cell fs-headline1 fl1 ow-break-word"><a href="/questions/54698492/grep-string-in-the-source-code-of-a-given-http-link" class="question-hyperlink">Grep string in the source code of a given http link</a></h1>
<p>I want to use bash commands line to find a string in the source code of a given web page. Manually I would do it like in those steps:</p>
100 102k 100 102k 0 0 160k 0 --:--:-- --:--:-- --:--:-- 159k
如果您只想要字符串,请使用 grep -o:
$ curl https://stackoverflow.com/questions/54698492/grep-string-in-the-source-code-of-a-given-http-link 2>/dev/null | grep -o "string in the source code"
string in the source code
string in the source code
string in the source code
string in the source code
string in the source code
string in the source code
string in the source code
string in the source code
string in the source code
string in the source code
string in the source code
string in the source code
string in the source code
添加回答
举报