设为首页收藏本站language 语言切换
查看: 1681|回复: 0
收起左侧

如何使用htmlq提取html文件内容

[复制链接]
发表于 2022-12-8 02:05:37 | 显示全部楼层 |阅读模式
htmlq能够对 HTML 数据进行 sed 或 grep 操作。我们可以使用 htmlq 搜索、切片和过滤 HTML 数据。让我们看看如何在 Linux 或 Unix 上安装和使用这个方便的工具并处理 HTML 数据。
什么是htmlq?

htmlq类似于 jq,但用于 HTML。使用 CSS 选择器从 HTML 文件中提取部分内容。在 CSS 中,选择器用于定位我们想要设置样式的网页上的 HTML 元素。例如,我们可以使用此工具轻松提取图像或其他 URL。

安装htmlq

首先需要在系统中安装cargo然后使用cargo来安装htmlq:

[root@localhost ~]# yum -y install cargo[root@localhost ~]# cargo install htmlq设置可执行的路径

确保将 $HOME/.cargo/bin 添加到 PATH 变量中,以便能够使用 export 命令运行已安装的二进制文件:

[root@localhost ~]# echo 'export PATH="$PATHHOME/.cargo/bin"' >> ~/.bash_profile [root@localhost ~]# . ~/.bash_profile 如何使用 htmlq 从 HTML 文件中提取内容?

下面是使用curl和htmlq的用法:

curl -s url | htmlq '#css-selector'curl -s url2 | htmlq '.css-selector'curl -s https://www.linuxprobe.com | htmlq --pretty '#content' | more

让我们找到页面中的所有链接。例如:

[root@localhost ~]# curl -s https://www.linuxprobe.com | htmlq --attribute href a


人性化显示HTML:

[root@localhost ~]# curl --silent https://mgdm.net | htmlq --pretty '#posts'

帮助手册

使用下面命令查看帮助页面:

[root@localhost ~]# htmlq --helphtmlq 0.3.0Michael Maclean <michael@mgdm.net>Runs CSS selectors on HTMLUSAGE:    htmlq [FLAGS] [OPTIONS] [selector]...FLAGS:    -B, --detect-base          Try to detect the base URL from the <base> tag in the document. If not found, default to                               the value of --base, if supplied    -h, --help                 Prints help information    -w, --ignore-whitespace    When printing text nodes, ignore those that consist entirely of whitespace    -p, --pretty               Pretty-print the serialised output    -t, --text                 Output only the contents of text nodes inside selected elements    -V, --version              Prints version informationOPTIONS:    -a, --attribute <attribute>    Only return this attribute (if present) from selected elements    -b, --base <base>              Use this URL as the base for links    -f, --filename <FILE>          The input file. Defaults to stdin    -o, --output <FILE>            The output file. Defaults to stdoutARGS:    <selector>...    The CSS expression to select [default: html]

总结

htmlq能够对 HTML 数据进行 sed 或 grep 操作。我们可以使用 htmlq 搜索、切片和过滤 HTML 数据。


您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-6 18:48 , Processed in 0.165397 second(s), 23 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表