BASH:如何将html页面的输出转换为txt文件

时间:2019-02-15 09:28:29

标签: html bash wget

我必须使用Bash脚本在任何浏览器上将HTML页面的输出传输到txt文件。 HTML文件将与txt文件位于同一文件夹中。

我尝试使用wget,但仅适用于链接。 所以我先在浏览器上打开了html文件,然后从那里复制了链接,但这似乎不起作用。

写入的命令是: wget“ file:///tmp/mozilla_vishal0/vishal.html”> fil.txt

这给了我这样的错误: file:///tmp/mozilla_vishal0/vishal.html:不受支持的方案“文件”。

2 个答案:

答案 0 :(得分:1)

使用"functionApp_appServicePlanName": { "defaultValue": "[concat('assamplefnappsvc',uniqueString(resourceGroup().id))]", "metadata": { "description": "Name of the app service plan to host function app." }, "type": "string" } 复制本地文件。

cp

答案 1 :(得分:-1)

尝试

curl -L https://google.com > output.txt

,这意味着使用curl可以获取带有跟踪重定向选项的https://google.com。 然后将输出保存到output.txt而不是stdout