PowerShell 技能连载 - 创建彩色的天气报告

在前一个技能中我们介绍了如何用 Invoke-WebRequest 来获取天气预报数据。获取到的数据是纯黑白的文本。

要获取彩色的报告,Windows 10 可以利用 powershell.exe 的控制序列特性。只需要在 PowerShell 控制台中运行以下代码:

1
2
3
$City = 'Hannover'

(Invoke-WebRequest "http://wttr.in/$City" -UserAgent curl).content -split "`n"

只需要将 user agent 设为“curl”,Windows 10 powershell.exe 就能收到包含色彩控制序列的输出。

PowerShell 技能连载 - 创建彩色的天气报告

http://blog.vichamp.com/2017/09/20/creating-colorful-weather-report/

作者

吴波

发布于

2017-09-20

更新于

2022-07-06

许可协议

评论