使用标准 Linux 工具链查找/替换 htmlentities?

发布于 2024-09-11 04:44:05 字数 332 浏览 5 评论 0原文

有没有办法使用标准 Linux 工具链执行类似以下操作?

假设 example.com/index.php 的源代码是:

Hello, & world! "

我怎样才能做这样的事情...

curl -s http://example.com/index.php | htmlentities

...这将打印以下内容:

Hello, & world! "

仅使用标准 linux 工具链?

Is there a way I can do something like the following using the standard linux toolchain?

Let's say the source at example.com/index.php is:

Hello, & world! "

How can I do something like this...

curl -s http://example.com/index.php | htmlentities

...that would print the following:

Hello, & world! "

Using only the standard linux toolchain?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吻风 2024-09-18 04:44:05

使用重新编码

$ echo 'Hello, & world! "' | recode HTML_4.0
Hello, & world! "

编辑:顺便说一句,recode提供了几种不同的转换,对应于不同版本的HTML和XML,因此您可以使用例如HTML_3.2来代替如果您有一个非常旧的 HTML 文档,则为 HTML_4.0。运行recode -l 将列出程序支持的所有字符集的完整列表。

Use recode.

$ echo 'Hello, & world! "' | recode HTML_4.0
Hello, & world! "

EDIT: By the way, recode offers several different conversions corresponding to different versions of HTML and XML, so you can use e.g. HTML_3.2 instead of HTML_4.0 if you have a really old HTML document. Running recode -l will list all the complete list of charsets supported by the program.

忘东忘西忘不掉你 2024-09-18 04:44:05
alias decode="php -r 'echo html_entity_decode(fgets( STDIN ));'"

$ echo 'Hello, & world! "' | decode
Hello, & world! "
alias decode="php -r 'echo html_entity_decode(fgets( STDIN ));'"

$ echo 'Hello, & world! "' | decode
Hello, & world! "
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文